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:
Diffstat (limited to 'newlib/libc/ctype/iswlower.c')
-rw-r--r--newlib/libc/ctype/iswlower.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/newlib/libc/ctype/iswlower.c b/newlib/libc/ctype/iswlower.c
deleted file mode 100644
index 683a9cbb0..000000000
--- a/newlib/libc/ctype/iswlower.c
+++ /dev/null
@@ -1,38 +0,0 @@
-
-/*
-FUNCTION
- <<iswlower>>---lowercase wide character test
-
-INDEX
- iswlower
-
-ANSI_SYNOPSIS
- #include <wctype.h>
- int iswlower(wint_t <[c]>);
-
-TRAD_SYNOPSIS
- #include <wctype.h>
- int iswlower(<[c]>)
- wint_t <[c]>;
-
-DESCRIPTION
-<<iswlower>> is a function which classifies wide-character values that
-have uppercase translations.
-
-RETURNS
-<<iswlower>> returns non-zero if <[c]> is a lowercase wide character.
-
-PORTABILITY
-<<iswlower>> is C99.
-
-No supporting OS subroutines are required.
-*/
-#include <_ansi.h>
-#include <wctype.h>
-
-int
-_DEFUN(iswlower,(c),wint_t c)
-{
- return (towupper (c) != c);
-}
-