summary refs log tree commit diff stats
path: root/src/common/util.h
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-09-24 02:39:52 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-09-24 02:39:52 +0200
commit2c2419f230b1232b938ad345f3e976fd6ada5077 (patch)
tree1c4d71b48ede68f33fffa243d8ad1205aec0720e /src/common/util.h
parentba0bcc92141556cb2f2dc1a49c6c39bd05b9ecc7 (diff)
Add strlcat() and strlcpy(), might convert to them in the future
Diffstat (limited to 'src/common/util.h')
-rw-r--r--src/common/util.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/util.h b/src/common/util.h
index c2f1e118..e7e22524 100644
--- a/src/common/util.h
+++ b/src/common/util.h
@@ -14,6 +14,7 @@
 #ifndef XCHAT_UTIL_H
 #define XCHAT_UTIL_H
 
+#include "strlutil.h"
 #define rfc_tolower(c) (rfc_tolowertab[(unsigned char)(c)])
 
 extern const unsigned char rfc_tolowertab[];