Created
May 18, 2016 07:26
-
-
Save kmsquire/48bdfaf29f306c559b7ba3caa1b4e8e3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include "merge.h" | |
#include "diff.h" | |
#include "rebase.h" | |
#include "checkout.h" | |
int main() { | |
printf("get_merge_flag_t: %zu\n", sizeof(git_merge_flag_t)); | |
printf("get_merge_file_flavor: %zu\n", sizeof(git_merge_file_favor_t)); | |
printf("git_merge_file_flag_t: %zu\n", sizeof(git_merge_file_flag_t)); | |
printf("git_diff_similarity_metric*: %zu\n", sizeof(git_diff_similarity_metric*)); | |
printf("git_merge_options: %zu\n", sizeof(git_merge_options)); | |
printf("git_rebase_options: %zu\n", sizeof(git_rebase_options)); | |
printf("git_checkout_options: %zu\n", sizeof(git_checkout_options)); | |
printf("unsigned int: %zu\n", sizeof(unsigned int)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment