[ Bottom of Page | Previous Page | Next Page | Contents | Index | Library Home | Legal | Search ]

Technical Reference: Base Operating System and Extensions, Volume 1

iswblank Subroutine

Purpose

Tests for a blank wide-character code.

Syntax

#include <wctype.h>

int iswblank (wc)
wint_t wc;

Description

The iswblank subroutine tests whether the wc parameter is a wide-character code representing a character of class blank in the program's current locale.

The wc parameter is a wint_t, the value of which the application ensures is a wide-character code corresponding to a valid character in the current locale, or equal to the value of the macro WEOF. If the parameter has any other value, the behavior is undefined.

Parameters

wc Specifies the value to be tested.

Return Values

The iswblank subroutine returns a nonzero value if the wc parameter is a blank wide-character code; otherwise, it returns a 0.

Related Information

iswalnum, iswalpha, iswcntrl, iswdigit, iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, or iswxdigit Subroutine and iswctype or is_wctype Subroutine.

setlocale Subroutine in AIX 5L Version 5.2 Technical Reference: Base Operating System and Extensions Volume 2.

wctype.h in AIX 5L Version 5.2 Files Reference.

[ Top of Page | Previous Page | Next Page | Contents | Index | Library Home | Legal | Search ]