18 lines
272 B
C
18 lines
272 B
C
#ifndef __MDE_CORE_STRING_H__
|
|
#define __MDE_CORE_STRING_H__
|
|
|
|
#include <MDE/MachDep.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
char* MDEStringDuplicate(const char* src);
|
|
|
|
char* MDEStringConcatenate(const char* str1, const char* str2);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|