2018-10-28 12:09:07 +01:00

15 lines
131 B
C

#ifndef FOO_H
#define FOO_H
#ifdef __cplusplus
extern "C" {
#endif
int foo();
#ifdef __cplusplus
} // extern "C"
#endif
#endif