mirror of
https://github.com/pret/pmd-sky.git
synced 2026-04-24 14:59:13 -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
|