mirror of
https://github.com/zeldaret/st
synced 2026-07-07 22:10:51 -04:00
69ef244371
* merge headers from nitro decomp * cleanup: use inlines from g2.h and gx.h when changing registers * cleanup: remove externs declarations in source files
18 lines
367 B
C
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
|