Prevent name mangling in C++
All checks were successful
CI / build-and-analyze (push) Successful in 1m24s
All checks were successful
CI / build-and-analyze (push) Successful in 1m24s
This commit is contained in:
@@ -1,6 +1,10 @@
|
||||
#ifndef CGE_FILE_H
|
||||
#define CGE_FILE_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
@@ -59,4 +63,8 @@ int CgeFileEndOfFile(CgeFile *file);
|
||||
int CgeFileClear(CgeFile *file);
|
||||
int CgeFileErrorCode(CgeFile *file);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* CGE_FILE_H */
|
||||
|
||||
Reference in New Issue
Block a user