mirror of https://github.com/PrimeDecomp/prime.git
11 lines
133 B
C++
11 lines
133 B
C++
|
#ifndef _CBASICS_HPP
|
||
|
#define _CBASICS_HPP
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
namespace CBasics {
|
||
|
char* Stringize(const char* fmt, ...);
|
||
|
};
|
||
|
|
||
|
#endif
|