11.07.2015 Views

CrossWorks for ARM User Guide

CrossWorks for ARM User Guide

CrossWorks for ARM User Guide

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

DescriptionPortabilityispunct returns nonzero (true) <strong>for</strong> every printing character <strong>for</strong> which neither isspacenor isalnum is true.ispunct con<strong>for</strong>ms to ISO/IEC 9899:1990 (C90) and ISO/IEC 9899:1999 (C99).See also isspace (page 246) isalnum (page 244)isspaceSynopsisDescriptionPortability#include int isspace(int c);isspace returns nonzero (true) if and only if the value of the argument c is a standardwhite-space character. The standard white-space characters are space (' '), <strong>for</strong>m feed('\f'), new-line ('\n'), carriage return ('\r'), horizontal tab ('\t'), and vertical tab('\v').isspace con<strong>for</strong>ms to ISO/IEC 9899:1990 (C90) and ISO/IEC 9899:1999 (C99).See also isblank (page 244)isupperSynopsisDescriptionPortability#include int isupper(int c);isupper returns nonzero (true) if and only if the value of the argument c is an uppercaseletter A through Z.isupper con<strong>for</strong>ms to ISO/IEC 9899:1990 (C90) and ISO/IEC 9899:1999 (C99).isxdigitSynopsisDescriptionPortability#include int isxdigit(int c);isxdigit returns nonzero (true) if and only if the value of the argument c is ahexadecimal digit 0 through 9, a through f, or A through F.isxdigit con<strong>for</strong>ms to ISO/IEC 9899:1990 (C90) and ISO/IEC 9899:1999 (C99).tolowerSynopsis#include int tolower(int c);246 Chapter 28 Standard C Library Reference

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!