.\" Generated by the Allegro makedoc utility .TH uisspace 3alleg4 "version 4.4.3" "Allegro" "Allegro manual" .SH NAME uisspace \- Tells if a character is whitespace. Allegro game programming library.\& .SH SYNOPSIS .B #include .sp .B int uisspace(int c); .SH DESCRIPTION Returns nonzero if `c' is whitespace, that is, carriage return, newline, form feed, tab, vertical tab, or space. Example: .nf for (counter = 0; counter < ustrlen(text_string); counter++) { if (uisspace(ugetat(text_string, counter))) usetat(text_string, counter, '_'); } .fi .SH SEE ALSO .BR uisdigit (3alleg4), .BR ugetc (3alleg4), .BR usetc (3alleg4), .BR uwidth (3alleg4), .BR ucwidth (3alleg4), .BR uisok (3alleg4)