summaryrefslogtreecommitdiff
path: root/src/common/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/util.c')
-rw-r--r--src/common/util.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/common/util.c b/src/common/util.c
index 3055ac2750..2f001d753c 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -329,17 +329,6 @@ tor_strupper(char *s)
}
}
-int
-tor_strisprint(const char *s)
-{
- while (*s) {
- if (!TOR_ISPRINT(*s))
- return 0;
- s++;
- }
- return 1;
-}
-
/* Compares the first strlen(s2) characters of s1 with s2. Returns as for
* strcmp.
*/