Created
April 23, 2016 10:01
-
-
Save stupidpupil/46cab09783139bbf868800df93035834 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 <krb5.h> | |
int main() | |
{ | |
printf("krb5_principal: %zu chars\n", sizeof(krb5_principal)/sizeof(char)); | |
printf("krb5_creds: %zu chars\n", sizeof(krb5_creds)/sizeof(char)); | |
printf("krb5_verify_init_creds_opt: %zu ints\n", sizeof(krb5_verify_init_creds_opt)/sizeof(int)); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment