2012-02-18 12:40:36 +02:00
|
|
|
#ifndef FOO_H
|
|
|
|
#define FOO_H
|
|
|
|
|
2018-10-28 12:09:07 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-02-18 12:40:36 +02:00
|
|
|
int foo();
|
|
|
|
|
2018-10-28 12:09:07 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2012-02-18 12:40:36 +02:00
|
|
|
#endif
|