MicrOS
|
#include "../ctype.h"
Functions | |
int | ispunct (int c) |
Check if value is punctation. More... | |
int ispunct | ( | int | c | ) |
Check if value is punctation.
The ispunct function tests for any printing character that is one of a locale-specific set of punctuation characters for which neither isspace nor isalnum is true. In the "C" locale, ispunct returns true for every printing character for which neither isspace nor isalnum is true.
c | Value to check. |