diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-09-08 18:33:51 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-09-08 18:33:51 +0000 |
commit | c4b3bf06c64712aa83ae13b617fc3e48933945cf (patch) | |
tree | d0159cddc32118f91e84c6e56eb92e18d8721d2c /src/common/util.h | |
parent | 810572a5de43e9262c6e9c8d68b29fc8d2e70e47 (diff) | |
download | tor-c4b3bf06c64712aa83ae13b617fc3e48933945cf.tar.gz tor-c4b3bf06c64712aa83ae13b617fc3e48933945cf.zip |
add strupper function
svn:r4934
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 eb39fd008a..d2a0051ceb 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -69,6 +69,7 @@ char *_tor_strndup(const char *file, const int line, const char *s, size_t n); /* String manipulation */ #define HEX_CHARACTERS "0123456789ABCDEFabcdef" void tor_strlower(char *s); +void tor_strupper(char *s); int strcmpstart(const char *s1, const char *s2); int strcasecmpstart(const char *s1, const char *s2); int strcmpend(const char *s1, const char *s2); |