Twilight Princess
Decompilation of The Legend of Zelda: Twilight Princess
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)
Definition string.c:3
void Strcpy(char *dst, char *src)
Definition string.c:34
u32 Strlen(char *str)
Definition string.c:60
s8 Strcmp(char *str1, char *str2)
Definition string.c:42
const void * src
Definition __os.h:116
signed char s8
Definition types.h:7
unsigned long u32
Definition types.h:12
unsigned char u8
Definition types.h:8