home *** CD-ROM | disk | FTP | other *** search
- main() /* is_tests.c -- illustrates 'is' functions */
-
- {
-
- char c, t;
-
- puts("Type any alphanumeric key on the keyboard\n");
-
-
- c = getchar();
- printf(" ... Ok, you want to know about '%c':\n",c);
-
- t = isalpha(c);
-
- putchar(10);
- if (t != 0)
- printf("that was an alphabetic character\n");
-
- t = isupper(c);
-
- if (t != 0)
- printf("and it was upper case\n");
-
- t = islower(c);
-
- if (t != 0)
- printf("and it was lower case\n");
-
- t = isdigit(c);
-
- if (t != 0)
- printf("I saw that digit\n");
-
- t = isxdigit(c);
-
- if (t != 0)
- printf("you can't fool me with that hexidecimal\n");
-
- t = isodigit(c);
- if (t != 0)
- printf("if you knew octal, like I know octal ...\n");
-
- t = isspace(c);
-
- if (t != 0)
- printf("that was a space or a tab\n");
-
- t = ispunct(c);
-
- if (t != 0)
- printf("ok, so you know how to punctuate\n");
-
- t = isalnum(c);
-
- if (t != 0)
- printf("that was an alphanumeric character\n");
-
- t = isprint(c);
-
- if (t != 0)
- printf("and it was printable\n");
-
- t = isgraph(c);
-
- if (t != 0)
- printf("that was a graphics character\n");
-
- t = iscntrl(c);
-
- if (t != 0)
- printf("that was a control character\n");
-
- t = isascii(c);
-
- if (t != 0)
- printf("well, at least it was ASCII\n");
-
- t = iscsym(c);
-
- if (t != 0)
- printf("it could be a valid character for a c identifier \n");
-
- t = iscsymf(c);
-
- if (t != 0)
- printf("it could even be the first character in a c identifier \n");
- }