1 #
   2 # This file and its contents are supplied under the terms of the
   3 # Common Development and Distribution License ("CDDL"), version 1.0.
   4 # You may only use this file in accordance with the terms of version
   5 # 1.0 of the CDDL.
   6 #
   7 # A full copy of the text of the CDDL should have accompanied this
   8 # source.  A copy of the CDDL is also available via the Internet at
   9 # http://www.illumos.org/license/CDDL.
  10 #
  11 
  12 #
  13 # Copyright 2014 Garrett D'Amore <garrett@damore.org>
  14 #
  15 
  16 #
  17 # Definitions found in ctype.h
  18 #
  19 
  20 #
  21 # Types.
  22 #
  23 type | locale_t | ctype.h | -ALL +SUSv4+
  24 
  25 #
  26 # Values.
  27 #
  28 
  29 #
  30 # Functions
  31 #
  32 func | isalnum  | int   | int   | ctype.h       | +ALL
  33 func | isalpha  | int   | int   | ctype.h       | +ALL
  34 func | isascii  | int   | int   | ctype.h       | -ALL +XPG3+
  35 func | isblank  | int   | int   | ctype.h       | -ALL +C99+
  36 func | iscntrl  | int   | int   | ctype.h       | +ALL
  37 func | isdigit  | int   | int   | ctype.h       | +ALL
  38 func | isgraph  | int   | int   | ctype.h       | +ALL
  39 func | islower  | int   | int   | ctype.h       | +ALL
  40 func | isprint  | int   | int   | ctype.h       | +ALL
  41 func | ispunct  | int   | int   | ctype.h       | +ALL
  42 func | isspace  | int   | int   | ctype.h       | +ALL
  43 func | isupper  | int   | int   | ctype.h       | +ALL
  44 func | isxdigit | int   | int   | ctype.h       | +ALL
  45 func | toascii  | int   | int   | ctype.h       | -ALL +XPG3+
  46 func | tolower  | int   | int   | ctype.h       | +ALL
  47 func | toupper  | int   | int   | ctype.h       | +ALL
  48 func | _tolower | int   | int   | ctype.h       | -ALL +XPG3+
  49 func | _toupper | int   | int   | ctype.h       | -ALL +XPG3+
  50 
  51 func | isalnum_l        | int   | int; locale_t | ctype.h       | -ALL +SUSv4+
  52 func | isalpha_l        | int   | int; locale_t | ctype.h       | -ALL +SUSv4+
  53 func | isblank_l        | int   | int; locale_t | ctype.h       | -ALL +SUSv4+
  54 func | iscntrl_l        | int   | int; locale_t | ctype.h       | -ALL +SUSv4+
  55 func | isdigit_l        | int   | int; locale_t | ctype.h       | -ALL +SUSv4+
  56 func | isgraph_l        | int   | int; locale_t | ctype.h       | -ALL +SUSv4+
  57 func | islower_l        | int   | int; locale_t | ctype.h       | -ALL +SUSv4+
  58 func | isprint_l        | int   | int; locale_t | ctype.h       | -ALL +SUSv4+
  59 func | ispunct_l        | int   | int; locale_t | ctype.h       | -ALL +SUSv4+
  60 func | isspace_l        | int   | int; locale_t | ctype.h       | -ALL +SUSv4+
  61 func | isupper_l        | int   | int; locale_t | ctype.h       | -ALL +SUSv4+
  62 func | isxdigit_l       | int   | int; locale_t | ctype.h       | -ALL +SUSv4+
  63 func | tolower_l        | int   | int; locale_t | ctype.h       | -ALL +SUSv4+
  64 func | toupper_l        | int   | int; locale_t | ctype.h       | -ALL +SUSv4+