mirror of https://github.com/bsnes-emu/bsnes.git
13 lines
227 B
C++
13 lines
227 B
C++
|
#ifndef NALL_STRING_VARIADIC_HPP
|
||
|
#define NALL_STRING_VARIADIC_HPP
|
||
|
|
||
|
namespace nall {
|
||
|
|
||
|
template<typename... Args> inline void print(Args&&... args) {
|
||
|
printf("%s", (const char*)string(std::forward<Args>(args)...));
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|