aboutsummaryrefslogtreecommitdiffstats
path: root/patheq.c
diff options
context:
space:
mode:
Diffstat (limited to 'patheq.c')
-rw-r--r--patheq.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/patheq.c b/patheq.c
deleted file mode 100644
index a23388d..0000000
--- a/patheq.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-#include "common.h"
-
-
-int
-patheq(const char *have, const char *want, const char **end_out)
-{
- while (*want) {
- if (*have != *want)
- return 0;
- if (*have == '/') {
- while (*++have == '/');
- while (*++want == '/');
- }
- }
- if (!end_out)
- return !*have;
- *end_out = have;
- return 1;
-}