Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
uisspace(3)			 Allegro manual 		     uisspace(3)

NAME
     uisspace - Tells if a character is whitespace. Allegro game programming li-
     brary.

SYNOPSIS
     #include <allegro.h>

     int uisspace(int c);

DESCRIPTION
     Returns  nonzero  if  `c' is whitespace, that is, carriage return, newline,
     form feed, tab, vertical tab, or space. Example:

	for (counter = 0; counter < ustrlen(text_string); counter++) {
	   if (uisspace(ugetat(text_string, counter)))
	      usetat(text_string, counter, '_');
	}

SEE ALSO
     uisdigit(3), ugetc(3), usetc(3), uwidth(3), ucwidth(3), uisok(3)

Allegro 			  version 4.4.3 		     uisspace(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=uisspace&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help