Skip to content

Instantly share code, notes, and snippets.

@jdiez17
Created June 9, 2015 12:39
Show Gist options
  • Save jdiez17/2f093b2c8cc2913bb890 to your computer and use it in GitHub Desktop.
Save jdiez17/2f093b2c8cc2913bb890 to your computer and use it in GitHub Desktop.
#include "calc.h" /* No other includes in your .c */
void doTheNeedful(int x) {
return x + 42;
}
#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