-
+ 64B3C8A8989834995DC2AA33BB1075A1DD53E8CB4F0E97847AAF8A8E2798F7B538D65AF16BF656BF46DE11126282B8C225F484DF1E023123CB2B2437E5C7D676
io.h
(0 . 0)(1 . 11)
129 #include <stddef.h>
130
131 void write_all(int fd, char const *buf, size_t len);
132 size_t read_all(int fd, unsigned char *buf, size_t len);
133 void write_str(int fd, char const *s);
134 void newline(int fd);
135 void write_line(int fd, char const *s);
136 #define assert(expr) ((void) ((expr) || (assert_fail(#expr), 0)))
137 void assert_fail(char const *expr);
138 void perr(char const *context);
139 int chkp(char const *context, int ret);