summaryrefslogtreecommitdiff
path: root/ccan/str/str_debug.h
diff options
context:
space:
mode:
authorWilliam Casarin <jb55@jb55.com>2018-07-09 22:28:25 -0700
committerWilliam Casarin <jb55@jb55.com>2018-07-09 22:31:48 -0700
commit9593fc545950782ed75f12f53238b07885559b2b (patch)
tree9c7c2f7cbb427c54e9184cb61eedce737a6cbc6f /ccan/str/str_debug.h
parentbd8c223756d2f912526ecef53bae0cc8e0c63442 (diff)
remove ccan for now
Diffstat (limited to 'ccan/str/str_debug.h')
-rw-r--r--ccan/str/str_debug.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/ccan/str/str_debug.h b/ccan/str/str_debug.h
deleted file mode 100644
index 92c10c4..0000000
--- a/ccan/str/str_debug.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/* CC0 (Public domain) - see LICENSE file for details */
-#ifndef CCAN_STR_DEBUG_H
-#define CCAN_STR_DEBUG_H
-
-/* #define CCAN_STR_DEBUG 1 */
-
-#ifdef CCAN_STR_DEBUG
-/* Because we mug the real ones with macros, we need our own wrappers. */
-int str_isalnum(int i);
-int str_isalpha(int i);
-int str_isascii(int i);
-#if HAVE_ISBLANK
-int str_isblank(int i);
-#endif
-int str_iscntrl(int i);
-int str_isdigit(int i);
-int str_isgraph(int i);
-int str_islower(int i);
-int str_isprint(int i);
-int str_ispunct(int i);
-int str_isspace(int i);
-int str_isupper(int i);
-int str_isxdigit(int i);
-
-char *str_strstr(const char *haystack, const char *needle);
-char *str_strchr(const char *s, int c);
-char *str_strrchr(const char *s, int c);
-#endif /* CCAN_STR_DEBUG */
-
-#endif /* CCAN_STR_DEBUG_H */