mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-05 17:15:53 +00:00
12 lines
171 B
C++
12 lines
171 B
C++
#ifndef _CBASICS
|
|
#define _CBASICS
|
|
|
|
#include "types.h"
|
|
|
|
namespace CBasics {
|
|
void Init();
|
|
char* Stringize(const char* fmt, ...);
|
|
}; // namespace CBasics
|
|
|
|
#endif // _CBASICS
|