Print this page
5710 iswblank_l missing from headers
Reviewed by: Josef Sipek <jeffpc@josefsipek.net>
Reviewed by: Igor Kozhukhov <ikozhukhov@gmail.com>
Approved by: TBD

Split Close
Expand all
Collapse all
          --- old/usr/src/test/libc-tests/cfg/symbols/wctype_h.cfg
          +++ new/usr/src/test/libc-tests/cfg/symbols/wctype_h.cfg
↓ open down ↓ 13 lines elided ↑ open up ↑
  14   14  #
  15   15  
  16   16  #
  17   17  # Definitions found in wctype.h
  18   18  #
  19   19  
  20   20  #
  21   21  # Types.
  22   22  #
  23   23  type |  wint_t          | wctype.h | ALL
       24 +type |  wctrans_t       | wctype.h | ALL
       25 +type |  wctype_t        | wctype.h | ALL
  24   26  
  25   27  #
  26   28  # Values.
  27   29  #
  28   30  value | WEOF            | wint_t        | wctype.h | ALL -XPG4+ SUSv2+
  29   31  
  30   32  #
  31   33  # Functions
  32   34  #
  33   35  func |  iswalnum                                                        |\
  34   36          int                                                             |\
  35   37          wint_t                                                          |\
  36   38          wctype.h | ALL
       39 +
       40 +func |  iswalnum_l                                                      |\
       41 +        int                                                             |\
       42 +        wint_t; locale_t                                                |\
       43 +        wctype.h | -ALL SUSv4+
       44 +
       45 +func |  iswalpha                                                        |\
       46 +        int                                                             |\
       47 +        wint_t                                                          |\
       48 +        wctype.h | ALL
       49 +
       50 +func |  iswalpha_l                                                      |\
       51 +        int                                                             |\
       52 +        wint_t; locale_t                                                |\
       53 +        wctype.h | -ALL SUSv4+
       54 +
       55 +func |  iswblank                                                        |\
       56 +        int                                                             |\
       57 +        wint_t                                                          |\
       58 +        wctype.h | C99+
       59 +
       60 +func |  iswblank_l                                                      |\
       61 +        int                                                             |\
       62 +        wint_t; locale_t                                                |\
       63 +        wctype.h | -ALL SUSv4+
       64 +
       65 +func |  iswcntrl                                                        |\
       66 +        int                                                             |\
       67 +        wint_t                                                          |\
       68 +        wctype.h | ALL
       69 +
       70 +func |  iswcntrl_l                                                      |\
       71 +        int                                                             |\
       72 +        wint_t; locale_t                                                |\
       73 +        wctype.h | -ALL SUSv4+
       74 +
       75 +func |  iswctype                                                        |\
       76 +        int                                                             |\
       77 +        wint_t; wctype_t                                                |\
       78 +        wctype.h | ALL
       79 +
       80 +func |  iswctype_l                                                      |\
       81 +        int                                                             |\
       82 +        wint_t; wctype_t; locale_t                                      |\
       83 +        wctype.h | -ALL SUSv4+
       84 +
       85 +func |  iswdigit                                                        |\
       86 +        int                                                             |\
       87 +        wint_t                                                          |\
       88 +        wctype.h | ALL
       89 +
       90 +func |  iswdigit_l                                                      |\
       91 +        int                                                             |\
       92 +        wint_t; locale_t                                                |\
       93 +        wctype.h | -ALL SUSv4+
       94 +
       95 +func |  iswgraph                                                        |\
       96 +        int                                                             |\
       97 +        wint_t                                                          |\
       98 +        wctype.h | ALL
       99 +
      100 +func |  iswgraph_l                                                      |\
      101 +        int                                                             |\
      102 +        wint_t; locale_t                                                |\
      103 +        wctype.h | -ALL SUSv4+
      104 +
      105 +func |  iswlower                                                        |\
      106 +        int                                                             |\
      107 +        wint_t                                                          |\
      108 +        wctype.h | ALL
      109 +
      110 +func |  iswlower_l                                                      |\
      111 +        int                                                             |\
      112 +        wint_t; locale_t                                                |\
      113 +        wctype.h | -ALL SUSv4+
      114 +
      115 +func |  iswprint                                                        |\
      116 +        int                                                             |\
      117 +        wint_t                                                          |\
      118 +        wctype.h | ALL
      119 +
      120 +func |  iswprint_l                                                      |\
      121 +        int                                                             |\
      122 +        wint_t; locale_t                                                |\
      123 +        wctype.h | -ALL SUSv4+
      124 +
      125 +func |  iswpunct                                                        |\
      126 +        int                                                             |\
      127 +        wint_t                                                          |\
      128 +        wctype.h | ALL
      129 +
      130 +func |  iswpunct_l                                                      |\
      131 +        int                                                             |\
      132 +        wint_t; locale_t                                                |\
      133 +        wctype.h | -ALL SUSv4+
      134 +
      135 +func |  iswspace                                                        |\
      136 +        int                                                             |\
      137 +        wint_t                                                          |\
      138 +        wctype.h | ALL
      139 +
      140 +func |  iswspace_l                                                      |\
      141 +        int                                                             |\
      142 +        wint_t; locale_t                                                |\
      143 +        wctype.h | -ALL SUSv4+
      144 +
      145 +func |  iswupper                                                        |\
      146 +        int                                                             |\
      147 +        wint_t                                                          |\
      148 +        wctype.h | ALL
      149 +
      150 +func |  iswupper_l                                                      |\
      151 +        int                                                             |\
      152 +        wint_t; locale_t                                                |\
      153 +        wctype.h | -ALL SUSv4+
      154 +
      155 +func |  iswxdigit                                                       |\
      156 +        int                                                             |\
      157 +        wint_t                                                          |\
      158 +        wctype.h | ALL
      159 +
      160 +func |  iswxdigit_l                                                     |\
      161 +        int                                                             |\
      162 +        wint_t; locale_t                                                |\
      163 +        wctype.h | -ALL SUSv4+
      164 +
      165 +func |  towctrans                                                       |\
      166 +        wint_t                                                          |\
      167 +        wint_t; wctrans_t                                               |\
      168 +        wctype.h | ALL
      169 +
      170 +func |  towctrans_l                                                     |\
      171 +        wint_t                                                          |\
      172 +        wint_t; wctrans_t; locale_t                                     |\
      173 +        wctype.h | -ALL SUSv4+
      174 +
      175 +func |  towlower                                                        |\
      176 +        wint_t                                                          |\
      177 +        wint_t                                                          |\
      178 +        wctype.h | ALL
      179 +
      180 +func |  towlower_l                                                      |\
      181 +        wint_t                                                          |\
      182 +        wint_t; locale_t                                                |\
      183 +        wctype.h | -ALL SUSv4+
      184 +
      185 +func |  towupper                                                        |\
      186 +        wint_t                                                          |\
      187 +        wint_t                                                          |\
      188 +        wctype.h | ALL
      189 +
      190 +func |  towupper_l                                                      |\
      191 +        wint_t                                                          |\
      192 +        wint_t; locale_t                                                |\
      193 +        wctype.h | -ALL SUSv4+
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX