summaryrefslogtreecommitdiff
path: root/src/common/util.h
diff options
context:
space:
mode:
authorYawning Angel <yawning@schwanenlied.me>2015-02-17 18:53:33 +0000
committerYawning Angel <yawning@schwanenlied.me>2015-02-17 18:53:33 +0000
commitcbd26157c52e27af16efcb474861eb4126085283 (patch)
treebd6705b51cf4dcda50715f734d3565a9806d3d50 /src/common/util.h
parentd038430a1409fbb28ea4d0b62654fc3cc7bb1f7a (diff)
downloadtor-cbd26157c52e27af16efcb474861eb4126085283.tar.gz
tor-cbd26157c52e27af16efcb474861eb4126085283.zip
Remove tor_strclear(), and replace previous calls with memwipe().
Diffstat (limited to 'src/common/util.h')
-rw-r--r--src/common/util.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/common/util.h b/src/common/util.h
index ea774bd9bd..783c2a13db 100644
--- a/src/common/util.h
+++ b/src/common/util.h
@@ -209,7 +209,6 @@ int strcasecmpstart(const char *s1, const char *s2) ATTR_NONNULL((1,2));
int strcmpend(const char *s1, const char *s2) ATTR_NONNULL((1,2));
int strcasecmpend(const char *s1, const char *s2) ATTR_NONNULL((1,2));
int fast_memcmpstart(const void *mem, size_t memlen, const char *prefix);
-void tor_strclear(char *s);
void tor_strstrip(char *s, const char *strip) ATTR_NONNULL((1,2));
long tor_parse_long(const char *s, int base, long min,