11.07.2015 Views

Imagecraft c compiler and development environment for the atmel avr

Imagecraft c compiler and development environment for the atmel avr

Imagecraft c compiler and development environment for the atmel avr

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.

ICCV8 <strong>for</strong> AVR – C Compiler <strong>for</strong> Atmel AVRCharacter Type FunctionsThe following functions categorize input according to <strong>the</strong> ASCII character set. Use#include > be<strong>for</strong>e using <strong>the</strong>se functions. int isalnum(int c)returns non-zero if c is a digit or alphabetic character. int isalpha(int c)returns non-zero if c is an alphabetic character. int iscntrl(int c)returns non-zero if c is a control character (<strong>for</strong> example, FF, BELL, LF). int isdigit(int c)returns non-zero if c is a digit. int isgraph(int c) )returns non-zero if c is a printable character <strong>and</strong> not a space. int islower(int c)returns non-zero if c is a lower-case alphabetic character. int isprint(int c)returns non-zero if c is a printable character. int ispunct(int c)returns non-zero if c is a printable character <strong>and</strong> is not a space or a digit or analphabetic character. int isspace(int c)returns non-zero if c is a space character, including space, CR, FF, HT, NL, <strong>and</strong> VT. int isupper(int c)returns non-zero if c is an upper-case alphabetic character. int isxdigit(int c)returns non-zero if c is a hexadecimal digit. int tolower(int c)returns <strong>the</strong> lower-case version of c if c is an upper-case character. O<strong>the</strong>rwise itreturns c.91

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

Saved successfully!

Ooh no, something went wrong!