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/head/wctype.h
          +++ new/usr/src/head/wctype.h
↓ open down ↓ 16 lines elided ↑ open up ↑
  17   17   * fields enclosed by brackets "[]" replaced with your own identifying
  18   18   * information: Portions Copyright [yyyy] [name of copyright owner]
  19   19   *
  20   20   * CDDL HEADER END
  21   21   */
  22   22  /*      wctype.h        1.13 89/11/02 SMI; JLE  */
  23   23  /*      from AT&T JAE 2.1                       */
  24   24  /*      definitions for international functions */
  25   25  
  26   26  /*
  27      - * Copyright 2014 Garrett D'Amore <garrett@damore.org>
       27 + * Copyright 2015 Garrett D'Amore <garrett@damore.org>
  28   28   *
  29   29   * Copyright 2003 Sun Microsystems, Inc.  All rights reserved.
  30   30   * Use is subject to license terms.
  31   31   */
  32   32  
  33   33  #ifndef _WCTYPE_H
  34   34  #define _WCTYPE_H
  35   35  
  36   36  #include <sys/feature_tests.h>
  37   37  #include <iso/wctype_iso.h>
↓ open down ↓ 96 lines elided ↑ open up ↑
 134  134  #define _LOCALE_T
 135  135  typedef struct _locale *locale_t;
 136  136  #endif
 137  137  
 138  138  extern wint_t towlower_l(wint_t, locale_t);
 139  139  extern wint_t towupper_l(wint_t, locale_t);
 140  140  extern wint_t towctrans_l(wint_t, wctrans_t, locale_t);
 141  141  extern int iswctype_l(wint_t, wctype_t, locale_t);
 142  142  extern int iswalnum_l(wint_t, locale_t);
 143  143  extern int iswalpha_l(wint_t, locale_t);
      144 +extern int iswblank_l(wint_t, locale_t);
 144  145  extern int iswcntrl_l(wint_t, locale_t);
 145  146  extern int iswdigit_l(wint_t, locale_t);
 146  147  extern int iswgraph_l(wint_t, locale_t);
 147  148  extern int iswlower_l(wint_t, locale_t);
 148  149  extern int iswprint_l(wint_t, locale_t);
 149  150  extern int iswpunct_l(wint_t, locale_t);
 150  151  extern int iswspace_l(wint_t, locale_t);
 151  152  extern int iswupper_l(wint_t, locale_t);
 152  153  extern int iswxdigit_l(wint_t, locale_t);
 153  154  extern wctrans_t wctrans_l(const char *, locale_t);
 154  155  extern wctype_t wctype_l(const char *, locale_t);
 155  156  #endif /* defined(_XPG7) || !defined(_STRICT_SYMBOLS) */
 156  157  
 157  158  #ifdef  __cplusplus
 158  159  }
 159  160  #endif
 160  161  
 161  162  #endif  /* _WCTYPE_H */
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX