summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'util.c')
-rw-r--r--util.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/util.c b/util.c
index 98c7dbc..de73f0e 100644
--- a/util.c
+++ b/util.c
@@ -463,6 +463,10 @@ void qsort_with_context(void *base, size_t nmemb, size_t size,
}
#endif
+bool is_path_separator(char c) {
+ return strchr(ALL_PATH_SEPARATORS, c) != NULL;
+}
+
const char *path_filename(const char *path) {
for (int i = (int)strlen(path) - 1; i >= 0; --i) {
if (strchr(ALL_PATH_SEPARATORS, path[i]))