tp/include/dolphin/charPipeline/structures/dolphinString.h

20 lines
345 B
C

#ifndef _CHARPIPELINE_STRUCTURES_DOLPHINSTRING_H_
#define _CHARPIPELINE_STRUCTURES_DOLPHINSTRING_H_
#include <dolphin/types.h>
#ifdef __cplusplus
extern "C" {
#endif
u8 Strcat(char* str1, char* str2, char* dst);
void Strcpy(char* dst, char* src);
s8 Strcmp(char* str1, char* str2);
u32 Strlen(char* str);
#ifdef __cplusplus
}
#endif
#endif