Created
June 9, 2015 12:39
-
-
Save jdiez17/2f093b2c8cc2913bb890 to your computer and use it in GitHub Desktop.
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 "calc.h" /* No other includes in your .c */ | |
void doTheNeedful(int x) { | |
return x + 42; | |
} |
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
#ifndef _CALC_H | |
#define _CALC_H | |
#include <stdio.h> | |
/* ... rest of your includes ... */ | |
void doTheNeedful(int); | |
/* ... rest of your function definitions ... */ | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment