Files
Yanis 6fee0769e9 Decompile VCMV library (#106)
* vcmv_cursor OK

* format and apply

* vcmv 18%

* vcmv 33%

* code_800838C0 98%, match other sections (vcmv 41%)

* vcmv 48%

* run dol-apply

* format

* vcmv_main 22% (vcmv 54%)

* vcmv_main 49% (vcmv 62%)

* vcmv_main OK (vcmv 76%)

* dol-apply and format

* code_800838C0 OK (vcmv 90%)

* code_800889E8 OK

* code_80089308 .text OK, started matching .rodata

* vcmv OK for oot-j

* format

* fix build and revert unwanted configure change

* remove existing vcmv splits

* match all versions except sm64-j and sm64-u

* dol-apply

* dol-apply sm64-e

* sm64-e fixes

* match sm64-j and sm64-u

* run dol-apply

* run format

* self-review
2026-09-06 15:25:04 +02:00

38 lines
1.1 KiB
C

#ifndef _STRING_H
#define _STRING_H
#include "revolution/types.h"
#ifdef __cplusplus
extern "C" {
#endif
int stricmp(const char*, const char*);
char* strcpy(char* dest, const char* src);
char* strncpy(char* dest, const char* src, size_t num);
char* strcat(char*, const char*);
char* strncat(char* dest, const char* src, size_t n);
int strcmp(const char* s1, const char* s2);
int strncmp(const char* s1, const char* s2, size_t n);
char* strchr(const char*, int);
char* strstr(const char* str, const char* substr);
size_t strlen(const char* str);
size_t strspn(const char* str, const char* set);
size_t strcspn(const char* str, const char* set);
char* strrchr(const char* str, int chr);
char* strpbrk(const char* str, const char* str2);
int strnicmp(const char* pStr1, const char* pStr2, int n);
void* __memrchr(const void* src, int val, size_t n);
void* memmove(void*, const void*, size_t);
int memcmp(const void*, const void*, size_t);
void* memchr(const void*, int, size_t);
void* memcpy(void* dest, const void* src, size_t n);
void* memset(void* dest, int val, size_t count);
#ifdef __cplusplus
}
#endif
#endif