CPlusPlusThings/basic_content/extern/extern_c/add.h

7 lines
73 B
C

#ifndef ADD_H
#define ADD_H
extern "C" {
int add(int x, int y);
}
#endif