SSBM Decomp
Loading...
Searching...
No Matches
dolphinString.h
Go to the documentation of this file.
1#ifndef _CHARPIPELINE_STRUCTURES_DOLPHINSTRING_H_
2#define _CHARPIPELINE_STRUCTURES_DOLPHINSTRING_H_
3
4#include <dolphin/types.h>
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10u8 Strcat(char *str1, char *str2, char *dst);
11void Strcpy(char *dst, char *src);
12s8 Strcmp(char *str1, char *str2);
13u32 Strlen(char *str);
14
15#ifdef __cplusplus
16}
17#endif
18
19#endif
u8 Strcat(char *str1, char *str2, char *dst)
void Strcpy(char *dst, char *src)
u32 Strlen(char *str)
s8 Strcmp(char *str1, char *str2)
unsigned long u32
Definition types.h:9
signed char s8
Definition hsd_3B2B.h:3
unsigned char u8
Definition hsd_3B2B.h:2