12 lines
147 B
C
12 lines
147 B
C
#pragma once
|
|
|
|
#if __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// cross-platform printf analog
|
|
void kprintf(const char* format, ...);
|
|
|
|
#if __cplusplus
|
|
}
|
|
#endif |