mirror of
https://github.com/changkun/modern-cpp-tutorial.git
synced 2025-12-17 12:44:40 +03:00
19 lines
204 B
C
19 lines
204 B
C
//
|
|
// foo.h
|
|
//
|
|
// chapter 1 introduction
|
|
// c++1x tutorial
|
|
//
|
|
// created by changkun at changkun.de
|
|
//
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int add(int x, int y);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|