Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/test/cmake/install_lib/foo.h
6169 views
1
#ifndef _FOO_H
2
#define _FOO_H
3
4
#ifdef __cplusplus
5
extern "C" {
6
#endif
7
8
int foo();
9
10
#ifdef __cplusplus
11
}
12
#endif
13
14
#endif
15
16