8 lines
111 B
C
8 lines
111 B
C
#pragma once
|
|
|
|
#include <stdarg.h>
|
|
|
|
void putc(char);
|
|
void printf(char *, ...);
|
|
void printf_nolock(char *, ...);
|