18 lines
310 B
C
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
|