Files
modern-cpp-tutorial/code/1/foo.c
2019-07-16 09:26:31 +02:00

17 lines
230 B
C

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