isutf8space

Tests for a whitespace character.

Library:LibC
Classification:Novell
Service:Characters and Strings

Syntax

  #include <utf8.h> 
   
  int  isutf8space (
     const utf8_t   *string);
  

Parameters

string

(IN) Points to the character to be tested.

Return Values

Returns a nonzero value when the argument is one of the indicated whitespace characters. Otherwise, it returns zero.

Remarks

The isutf8space function tests for the following whitespace characters:

0x20

Space

0x0C

Form feed

0x0A

New line or line feed

0x0D

Carriage return

0x09

Horizontal tab

0x0B

Vertical tab

See Also