]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/inspstring.h
Fixed inspstring strlcpy and strlcat
[user/henk/code/inspircd.git] / include / inspstring.h
1 #ifndef __IN_INSPSTRING_H
2 #define __IN_INSPSTRING_H
3
4 #include "inspircd_config.h"
5
6 #ifndef HAS_STRLCPY
7 size_t strlcpy(char *dst, const char *src, size_t siz);
8 size_t strlcat(char *dst, const char *src, size_t siz);
9 #endif
10
11 #endif