diff options
author | Roger Dingledine <arma@torproject.org> | 2006-03-15 23:35:55 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-03-15 23:35:55 +0000 |
commit | 0e62befab8e4ece2f7b80a2755b7fb36521f5fe0 (patch) | |
tree | fa9024910180b35aed60eb4a7836903aa3322f8e /src/common/util.h | |
parent | 8d1f65a2225da5c3b9e4edaa712bd65617989324 (diff) | |
download | tor-0e62befab8e4ece2f7b80a2755b7fb36521f5fe0.tar.gz tor-0e62befab8e4ece2f7b80a2755b7fb36521f5fe0.zip |
add tor_strisprint() back in, this time with comments.
svn:r6170
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 ebcf70f7ec..cdcd64f6b4 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -90,6 +90,7 @@ extern int dmalloc_free(const char *file, const int line, void *pnt, #define HEX_CHARACTERS "0123456789ABCDEFabcdef" void tor_strlower(char *s); void tor_strupper(char *s); +int tor_strisprint(const 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); |