1
0
src/libio/libio.h
2022-09-18 10:44:47 -04:00

8 lines
184 B
C

#ifndef _LIBIO_H
# define _LIBIO_H
int fdprint(int fd, char *s);
int fdputd(int fd, int d);
int fdputs(int fd, char *s);
unsigned int parse_uint(char *s);
#endif /* ifndef _LIBIO_H */