Files
modern-cpp-tutorial/code/1/foo.h
2019-07-16 09:26:31 +02:00

20 lines
260 B
C

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