2020-10-10 23:02:13 +00:00
|
|
|
#ifndef CXX_11_UTIL_H
|
|
|
|
|
2020-11-19 19:52:41 +00:00
|
|
|
#define CXX_11_UTIL_H
|
2020-10-10 23:02:13 +00:00
|
|
|
|
|
|
|
#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
|