mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
11 lines
193 B
C++
Executable file
11 lines
193 B
C++
Executable file
#ifdef NALL_STRING_INTERNAL_HPP
|
|
|
|
namespace nall {
|
|
|
|
template<typename... Args> inline void print(Args&&... args) {
|
|
printf("%s", (const char*)string(std::forward<Args>(args)...));
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|