11 lines
156 B
C
11 lines
156 B
C
|
|
#ifndef AXL_IO_H
|
||
|
|
#include "axl_types.h"
|
||
|
|
|
||
|
|
#define AXL_EOF -1
|
||
|
|
#define AXL_SUCCESS 0
|
||
|
|
|
||
|
|
i8 axl_putchar(i32 c);
|
||
|
|
i8 axl_puts(const i8* str);
|
||
|
|
|
||
|
|
#endif // !AXL_IO_H
|