Created
July 31, 2014 07:50
-
-
Save Cee/e5d4d5c91d87d91a058f to your computer and use it in GitHub Desktop.
Fizz
This file contains hidden or 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
void fizz(int arg1, char arg2, long arg3, | |
char* arg4, short arg5, short arg6, unsigned long long val) | |
{ | |
entry_check(1); /* Make sure entered this function properly */ | |
if (val == cookie) | |
{ | |
printf("Fizz!: You called fizz(0x%llx)\n", val); | |
validate(1); | |
} | |
else { | |
printf("Misfire: You called fizz(0x%llx)\n", val); | |
} | |
exit(0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment