Files
modern-cpp-tutorial/code/1/foo.c
2018-04-02 00:28:05 +02:00

16 lines
179 B
C

//
// foo.c
//
// chapter 1 introduction
// modern cpp tutorial
//
// created by changkun at changkun.de
//
#include "foo.h"
// C code
int add(int x, int y) {
return x+y;
}