mdelibs/include/MDE/Core/String.h

18 lines
272 B
C
Raw Normal View History

2025-11-25 05:31:58 +09:00
#ifndef __MDE_CORE_STRING_H__
#define __MDE_CORE_STRING_H__
2025-11-16 12:01:34 +09:00
#include <MDE/MachDep.h>
#ifdef __cplusplus
extern "C" {
#endif
char* MDEStringDuplicate(const char* src);
2025-11-23 17:23:35 +09:00
char* MDEStringConcatenate(const char* str1, const char* str2);
2025-11-16 12:01:34 +09:00
#ifdef __cplusplus
}
#endif
#endif