assaultfish/engine/include/GearSrc/String.h
2026-01-12 01:55:20 +09:00

18 lines
310 B
C

#ifndef __GEARSRC_STRING_H__
#define __GEARSRC_STRING_H__
#include <GearSrc/MachDep.h>
#include <GearSrc/TypeDefs.h>
#ifdef __cplusplus
extern "C" {
#endif
GSDECL char* GSStringDuplicate(const char* str);
GSDECL char* GSStringConcat(const char* str1, const char* str2);
#ifdef __cplusplus
}
#endif
#endif