mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-10 04:45:27 -05:00
8 lines
117 B
C
8 lines
117 B
C
#ifndef STR_H
|
|
#define STR_H
|
|
|
|
char *StrCat(int count, ...);
|
|
char *StrDup(char *prevDest, char *src);
|
|
|
|
#endif // STR_H
|