Skip to content

Instantly share code, notes, and snippets.

@stupidpupil
Created April 23, 2016 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stupidpupil/46cab09783139bbf868800df93035834 to your computer and use it in GitHub Desktop.
Save stupidpupil/46cab09783139bbf868800df93035834 to your computer and use it in GitHub Desktop.
#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