mirror of
https://github.com/zeldaret/tp
synced 2026-05-24 15:21:08 -04:00
e14b04c54a
* some d_save matches / fixes * more d_save cleanup * fopAc_ac_c changes * move a bunch of d_save / d_com_inf_game stuff * format + remove asm * move bit labels to correct header * format * move d_item * fix check_itemno doc * move * fixes * getLayerNo_common_common almost matching just regalloc issues * small fixes * few more matches * fix
22 lines
606 B
C
22 lines
606 B
C
#ifndef MSL_STRING_H_
|
|
#define MSL_STRING_H_
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
extern "C" {
|
|
void memcpy(void*, const void*, s32);
|
|
void* memset(void* dest, int ch, u32 count);
|
|
char* strrchr(const char* s, int c);
|
|
char* strchr(const char* s, int c);
|
|
int strncmp(const char* s1, const char* s2, u32 n);
|
|
int strcmp(const char* s1, const char* s2);
|
|
char* strcat(char* dest, const char* source);
|
|
char* strncpy(char* dest, const char* source, u32 n);
|
|
char* strcpy(char* dest, const char* source);
|
|
u32 strlen(const char* s);
|
|
int tolower(int);
|
|
int sprintf(char*, const char*, ...);
|
|
int printf(const char*, ...);
|
|
}
|
|
|
|
#endif |