1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
-
- #ifndef _lub_c_decl_h
- #define _lub_c_decl_h
- #ifdef __cplusplus
- #define _BEGIN_C_DECL extern "C" {
- #define _END_C_DECL }
- #else
- #define _BEGIN_C_DECL
- #define _END_C_DECL
- #endif
- #endif
|