diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-11-09 18:22:17 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-11-09 18:22:17 +0000 |
commit | cd753df7bf741f5063d672afaf23390ebbd55c48 (patch) | |
tree | 9434a2526b72f8d577f87a3991a14827e705217b /src/common/util.h | |
parent | b9605745566610dddf51be3c1b4018961d0ab3ca (diff) | |
download | tor-cd753df7bf741f5063d672afaf23390ebbd55c48.tar.gz tor-cd753df7bf741f5063d672afaf23390ebbd55c48.zip |
Resolve many XXXs and all DOCDOCs
svn:r2755
Diffstat (limited to 'src/common/util.h')
-rw-r--r-- | src/common/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/util.h b/src/common/util.h index 9f116b5796..043d77c45a 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -47,6 +47,7 @@ char *tor_strndup(const char *s, size_t n); #define HEX_CHARACTERS "0123456789ABCDEFabcdef" void tor_strlower(char *s); int strcmpstart(const char *s1, const char *s2); +int strcmpend(const char *s1, const char *s2); int tor_strstrip(char *s, const char *strip); typedef enum { ALWAYS_TERMINATE, NEVER_TERMINATE, TERMINATE_IF_EVEN |