mirror of
https://github.com/pret/pmd-sky.git
synced 2026-03-21 17:25:15 -05:00
11 lines
423 B
C
11 lines
423 B
C
#ifndef PMDSKY_MAIN_020251AC_H
|
|
#define PMDSKY_MAIN_020251AC_H
|
|
|
|
void SetQuestionMarks(char *s);
|
|
void StrcpySimple(unsigned char* dest, const unsigned char* src);
|
|
void StrncpySimple(unsigned char* dest, const unsigned char* src, s32 n);
|
|
void StrncpySimpleNoPad(unsigned char* dest, const unsigned char* src, s32 n);
|
|
int StrncmpSimple(const unsigned char* c1, const unsigned char* c2, s32 n);
|
|
|
|
#endif //PMDSKY_MAIN_020251AC_H
|