Files
modern-cpp-tutorial/code/1/foo.h
2018-03-30 08:14:35 +02:00

18 lines
176 B
C

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