OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-newlib/] [newlib-1.17.0/] [newlib/] [libc/] [ctype/] [iswlower.c] - Rev 9

Compare with Previous | Blame | View Log

 
/*
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);
}
 
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.