Created
March 23, 2016 13:35
-
-
Save fyquah/ab6ce150d6896911b607 to your computer and use it in GitHub Desktop.
mine.c
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
#include "shared_headers.h" | |
int my_fnc() { | |
int a = your_fnc(); | |
return a + 1; | |
} |
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
#include "shared_headers.h" | |
int your_fnc() { | |
return 2 + 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment