_isctype, iswctype (Windows CE 5.0)

Send Feedback

Developing an Application > Microsoft C Run-time Library for Windows CE > Run-time Library Reference

iswctype tests c for the property specified by the desc argument.

For each valid value of desc, there is an equivalent wide-character classification routine.

int _isctype(   int c,    int desc);int iswctype(    wint_tc, 
   wctype_tdesc);

Parameters

  • c
    Integer to test.
  • desc
    Property to test for.

Return Values

iswctype returns a nonzero value if c has the property specified by desc, or 0 if it does not.

The result of the test condition is independent of locale.

Requirements

OS Versions: Windows CE 2.0 and later.
Header: stdlib.h.
Link Library: coredll.dll.

See Also

isalnum | __isascii | iscntrl | isdigit | ispunct | isspace

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.