minecraft-pi-reborn/mods/src/cxx11_util.h
TheBrokenRail a39476228e
All checks were successful
minecraft-pi-docker/pipeline/head This commit looks good
Use Better Exit Codes
2020-11-19 14:53:00 -05:00

22 lines
273 B
C

#ifndef CXX_11_UTIL_H
#define CXX_11_UTIL_H
#ifdef __cplusplus
extern "C" {
#endif
#define CXX11_STRING_SIZE 24
struct cxx11_string {
unsigned char data[CXX11_STRING_SIZE];
};
cxx11_string create_cxx11_string(const char *str);
#ifdef __cplusplus
}
#endif
#endif