Loading [MathJax]/extensions/MathMenu.js
Twilight Princess
Decompilation of The Legend of Zelda: Twilight Princess
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
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
const void * src
Definition __os.h:116
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
signed char s8
Definition types.h:4
unsigned long u32
Definition types.h:9
unsigned char u8
Definition types.h:5