Fanuc C-Executer Operating Manual
B-62443EN-3/03E
- 107 -
FANUC Series 16/18 C Executor
3.1 ANSI C standard library
===========================
Lists of Functions
~~~~~~~~~~~~~~~~~~
1. Diagnostics ( assert.h )
-------------------------------------------------------------------
Name Function
-------------------------------------------------------------------
1.1 assert Abort by assertion.
-------------------------------------------------------------------
2. Character handling ( ctype.h )
-------------------------------------------------------------------
Name Function
-------------------------------------------------------------------
2.1 isalnum Test for alphanumeric character.
2.2 isalpha Test for alphabetic character.
2.3 iscntrl Test for control character.
2.4 isdigit Test for numeric character.
2.5 isgraph Test for visible character.
2.6 islower Test for lowercase alphabetic character.
2.7 isprint Test for printable character.
2.8 ispunct Test for punctuation character.
2.9 isspace Test for whitespace character.
2.10 isupper Test for uppercase alphabetic character.
2.11 isxdigit Test for hexadecimal numeric character.
2.12 tolower Convert uppercase to lowercase.
2.13 toupper Convert lowercase to uppercase.
-------------------------------------------------------------------