2025-12-02 21:30:20 +03:00
|
|
|
#ifndef AXL_IO_H
|
|
|
|
|
#include "axl_types.h"
|
|
|
|
|
|
|
|
|
|
#define AXL_EOF -1
|
|
|
|
|
#define AXL_SUCCESS 0
|
|
|
|
|
|
2025-12-04 16:52:03 +03:00
|
|
|
i32 axl_putchar(i32 c);
|
2025-12-02 22:29:15 +03:00
|
|
|
i32 axl_puts(const i8* str);
|
2025-12-02 21:30:20 +03:00
|
|
|
|
|
|
|
|
#endif // !AXL_IO_H
|