Files
modern-cpp-tutorial/code/1/foo.h
2018-04-02 00:28:05 +02:00

19 lines
209 B
C

//
// foo.h
//
// chapter 1 introduction
// modern cpp tutorial
//
// created by changkun at changkun.de
//
#ifdef __cplusplus
extern "C" {
#endif
int add(int x, int y);
#ifdef __cplusplus
}
#endif