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.

isalnumSynopsisDescriptionPortability#include int isalnum(int c);isalnum returns nonzero (true) if and only if isalpha or isdigit return true <strong>for</strong> value ofthe argument c.isalnum con<strong>for</strong>ms to ISO/IEC 9899:1990 (C90) and ISO/IEC 9899:1999 (C99).See also isalpha (page 244) isdigit (page 245)isalphaSynopsisDescriptionPortability#include int isalpha(int c);isalpha returns nonzero (true) if and only if isupper or islower return true <strong>for</strong> value ofthe argument c.isalpha con<strong>for</strong>ms to ISO/IEC 9899:1990 (C90) and ISO/IEC 9899:1999 (C99).See also isupper (page 246) isupper (page 245)isblankSynopsisDescriptionPortability#include int isblank(int c);isblank returns nonzero (true) if and only if the value of the argument c is either aspace character (' ') or the horizontal tab character ('\t').isblank ISO/IEC 9899:1999 (C99).See also isspace (page 246)iscntrlSynopsisDescriptionPortability#include int iscntrl(int c);iscntrl returns nonzero (true) if and only if the value of the argument c is a controlcharacter. Control characters have values 0 through 31 and the single value 127.iscntrl con<strong>for</strong>ms to ISO/IEC 9899:1990 (C90) and ISO/IEC 9899:1999 (C99).244 Chapter 28 Standard C Library Reference

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

Saved successfully!

Ooh no, something went wrong!