mirror of
https://github.com/aap/pdp6.git
synced 2026-01-11 23:53:31 +00:00
11 lines
342 B
C
11 lines
342 B
C
void strtolower(char *s);
|
|
int hasinput(int fd);
|
|
int writen(int fd, void *data, int n);
|
|
int readn(int fd, void *data, int n);
|
|
int dial(const char *host, int port);
|
|
void serve(int port, void (*handlecon)(int, void*), void *arg);
|
|
void nodelay(int fd);
|
|
|
|
void *createseg(const char *name, size_t sz);
|
|
void *attachseg(const char *name, size_t sz);
|