mirror of
https://github.com/changkun/modern-cpp-tutorial.git
synced 2025-12-17 20:54:39 +03:00
20 lines
260 B
C
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
|