Files
modern-cpp-tutorial/1/foo.h
2016-08-20 13:00:44 +08:00

18 lines
178 B
C

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