Files
st/libs/nitro/include/nitro/std.h
T
Yanis 69ef244371 Merge headers from nitro decomp (#69)
* merge headers from nitro decomp

* cleanup: use inlines from g2.h and gx.h when changing registers

* cleanup: remove externs declarations in source files
2026-05-25 02:55:16 +02:00

18 lines
367 B
C

#ifndef _NITRO_STD_H
#define _NITRO_STD_H
#ifdef __cplusplus
extern "C" {
#endif
s32 STD_CompareNString(const char *src, const char *dst, s32 size);
s32 STD_CompareString(const char *src, const char *dst);
char *STD_CopyString(char *dst, const char *src);
char *STD_SearchString(const char *src, const char *dst);
#ifdef __cplusplus
} // extern "C"
#endif
#endif