mirror of
https://github.com/fergalmoran/ferglos.git
synced 2025-12-22 09:28:22 +00:00
12 lines
291 B
C++
12 lines
291 B
C++
#ifndef __FERGLOS_COMMON_STDIO_H
|
|
#define __FERGLOS_COMMON_STDIO_H
|
|
#include <common/types.h>
|
|
namespace ferglos {
|
|
namespace common {
|
|
void printf(const char* str);
|
|
void wprintf(const wchar_t* str);
|
|
void printfHex(uint8_t key);
|
|
void clear();
|
|
} // namespace common
|
|
} // namespace ferglos
|
|
#endif |