mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-21 20:33:28 +00:00
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
|