16 lines
197 B
C
16 lines
197 B
C
|
|
#ifndef __MDE_STRING_H__
|
||
|
|
#define __MDE_STRING_H__
|
||
|
|
|
||
|
|
#include <MDE/MachDep.h>
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
char* MDEStringDuplicate(const char* src);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|