2026-01-10 00:55:45 +09:00
|
|
|
#ifndef __GEARBOX_STRING_H__
|
|
|
|
|
#define __GEARBOX_STRING_H__
|
|
|
|
|
|
|
|
|
|
#include <GearBox/MachDep.h>
|
|
|
|
|
#include <GearBox/TypeDefs.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
GBDECL char* GBStringDuplicate(const char* str);
|
2026-01-12 01:03:18 +09:00
|
|
|
GBDECL char* GBStringConcat(const char* str1, const char* str2);
|
2026-01-10 00:55:45 +09:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|