Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-07-02 06:03:50 +0400
committerChristopher Faylor <me@cgf.cx>2000-07-02 06:03:50 +0400
commitc570d680fb3ffcfc973d13e56eabd143b0940cb3 (patch)
tree0e542b60fb1d0f7854fb6fe76e1fb710d355c6a1 /winsup/cygwin
parentfdc7052b0f3172ade1bf2d5a27a67b9709271ba1 (diff)
Add some comments.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/path.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc
index 1ff1e5096..3150ebfdd 100644
--- a/winsup/cygwin/path.cc
+++ b/winsup/cygwin/path.cc
@@ -2747,6 +2747,7 @@ cygwin_split_path (const char *path, char *dir, char *file)
(x != CHXOR || !isalpha (ch1))); \
})
+/* Return TRUE if two strings match up to length n */
int __stdcall
strncasematch (const char *s1, const char *s2, size_t n)
{
@@ -2763,6 +2764,7 @@ strncasematch (const char *s1, const char *s2, size_t n)
return !n || *s2 == '\0';
}
+/* Return TRUE if two strings match */
int __stdcall
strcasematch (const char *s1, const char *s2)
{