aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2018-12-09 14:46:14 +0000
committerRon Yorston <rmy@pobox.com>2018-12-09 14:47:42 +0000
commit6691b2e8d230e1c85d1a31a752f9f5b6933edbb0 (patch)
treef9e1c83e5adf9c48c758a18f68ec172983e03c86 /include
parent4a5a8422feab7d38f60d2576e32916f9cf711d29 (diff)
downloadbusybox-w32-6691b2e8d230e1c85d1a31a752f9f5b6933edbb0.tar.gz
busybox-w32-6691b2e8d230e1c85d1a31a752f9f5b6933edbb0.tar.bz2
busybox-w32-6691b2e8d230e1c85d1a31a752f9f5b6933edbb0.zip
win32: add a case-insensitive version of is_suffixed_with()
Diffstat (limited to 'include')
-rw-r--r--include/mingw.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mingw.h b/include/mingw.h
index b8c0b12b5..a1869227d 100644
--- a/include/mingw.h
+++ b/include/mingw.h
@@ -448,6 +448,7 @@ int kill_SIGTERM_by_handle(HANDLE process, int exit_code);
448#define find_mount_point(n, s) find_mount_point(n) 448#define find_mount_point(n, s) find_mount_point(n)
449 449
450char *is_prefixed_with_case(const char *string, const char *key) FAST_FUNC; 450char *is_prefixed_with_case(const char *string, const char *key) FAST_FUNC;
451char *is_suffixed_with_case(const char *string, const char *key) FAST_FUNC;
451void qsort_string_vector_case(char **sv, unsigned count) FAST_FUNC; 452void qsort_string_vector_case(char **sv, unsigned count) FAST_FUNC;
452 453
453/* 454/*