blob: a66a6bdae15278007ecdf2cf72c947f9d4da3136 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef XLIB_H
#define XLIB_H
void *xmalloc(size_t size);
void *xrealloc(void *ptr, size_t size);
char *xstrdup(const char *str);
int init_sockaddr(struct sockaddr_in *addr, const char *host);
#endif
|