Removed unused header file
[transsip-mirror.git] / src / strlcpy.h
blobf6bac2e4f23c018611a691e8d585c90b1bb68a53
1 /*
2 * transsip - the telephony network
3 * By Daniel Borkmann <daniel@transsip.org>
4 * Copyright 2011 Daniel Borkmann <dborkma@tik.ee.ethz.ch>,
5 * Swiss federal institute of technology (ETH Zurich)
6 * Subject to the GPL, version 2.
7 */
9 #ifndef STRLCPY_H
10 #define STRLCPY_H
12 extern size_t strlcpy(char *dest, const char *src, size_t size);
13 extern int slprintf(char *dst, size_t size, const char *fmt, ...);
14 extern char **strntoargv(char *str, size_t len, int *argc);
16 #endif /* STRLCPY_H */