diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-08-22 14:43:24 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-08-22 14:46:10 +0200 |
commit | d3e49c4280f10584587fad83bc08c6a168c174d3 (patch) | |
tree | 9127d2f55556a0a049bef296c14da74e0b05904e /src/xlib.h | |
parent | 82ec45bb8abf8052a558e8ad589b66b34a0084fa (diff) | |
download | pingu-d3e49c4280f10584587fad83bc08c6a168c174d3.tar.bz2 pingu-d3e49c4280f10584587fad83bc08c6a168c174d3.tar.xz |
move soures to src subdir
Diffstat (limited to 'src/xlib.h')
-rw-r--r-- | src/xlib.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/xlib.h b/src/xlib.h new file mode 100644 index 0000000..a66a6bd --- /dev/null +++ b/src/xlib.h @@ -0,0 +1,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 |