mirror of
https://github.com/changkun/modern-cpp-tutorial.git
synced 2025-12-18 21:24:39 +03:00
18 lines
176 B
C
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
|