diff options
Diffstat (limited to 'src/string_utils.h')
-rw-r--r-- | src/string_utils.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/string_utils.h b/src/string_utils.h index 86795dcb..4102a54c 100644 --- a/src/string_utils.h +++ b/src/string_utils.h @@ -71,12 +71,6 @@ is_print(const int c) } static inline bool -is_base64(const int c) -{ - return is_alpha(c) || is_digit(c) || c == '+' || c == '/' || c == '='; -} - -static inline bool is_windows_path(const char* path) { return is_alpha(path[0]) && (path[1] == ':' || path[1] == '|') && |