mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-29 16:55:35 +00:00
12 lines
146 B
C++
12 lines
146 B
C++
#ifndef _CBASICS_HPP
|
|
#define _CBASICS_HPP
|
|
|
|
#include "types.h"
|
|
|
|
namespace CBasics {
|
|
void Init();
|
|
char* Stringize(const char* fmt, ...);
|
|
};
|
|
|
|
#endif
|