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