summaryrefslogtreecommitdiff
path: root/src/common/util.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2004-11-02 19:25:52 +0000
committerNick Mathewson <nickm@torproject.org>2004-11-02 19:25:52 +0000
commit67f14032b18b7b46a56bd32ccb88923588603164 (patch)
treee226b607d34b77df664416b3ee2d123ecf4e88d1 /src/common/util.h
parent509c0bdc22c5c36b8f6048e9beef852875de85d2 (diff)
downloadtor-67f14032b18b7b46a56bd32ccb88923588603164.tar.gz
tor-67f14032b18b7b46a56bd32ccb88923588603164.zip
Handle strlcat/strlcpy correctly on platforms that have them.
svn:r2647
Diffstat (limited to 'src/common/util.h')
-rw-r--r--src/common/util.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/common/util.h b/src/common/util.h
index 0fa51532d8..ae5ab9dc57 100644
--- a/src/common/util.h
+++ b/src/common/util.h
@@ -46,9 +46,6 @@ char *tor_strndup(const char *s, size_t n);
/* String manipulation */
#define HEX_CHARACTERS "0123456789ABCDEFabcdef"
-size_t strlcat(char *dst, const char *src, size_t siz);
-size_t strlcpy(char *dst, const char *src, size_t siz);
-
void tor_strlower(char *s);
int strcmpstart(const char *s1, const char *s2);
int tor_strstrip(char *s, const char *strip);