[BACK]Return to wchar.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / include

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/include/wchar.h between version 1.21 and 1.26

version 1.21, 2005/02/03 04:39:32 version 1.26, 2006/08/22 20:50:46
Line 93  typedef _BSD_SIZE_T_ size_t;
Line 93  typedef _BSD_SIZE_T_ size_t;
 #undef  _BSD_SIZE_T_  #undef  _BSD_SIZE_T_
 #endif  #endif
   
   struct tm;
   
 __BEGIN_DECLS  __BEGIN_DECLS
 wint_t  btowc(int);  wint_t  btowc(int);
 size_t  mbrlen(const char * __restrict, size_t, mbstate_t * __restrict);  size_t  mbrlen(const char * __restrict, size_t, mbstate_t * __restrict);
Line 108  int wcscmp(const wchar_t *, const wchar_
Line 110  int wcscmp(const wchar_t *, const wchar_
 int     wcscoll(const wchar_t *, const wchar_t *);  int     wcscoll(const wchar_t *, const wchar_t *);
 wchar_t *wcscpy(wchar_t * __restrict, const wchar_t * __restrict);  wchar_t *wcscpy(wchar_t * __restrict, const wchar_t * __restrict);
 size_t  wcscspn(const wchar_t *, const wchar_t *);  size_t  wcscspn(const wchar_t *, const wchar_t *);
   size_t  wcsftime(wchar_t * __restrict, size_t, const wchar_t * __restrict,
               const struct tm * __restrict);
 size_t  wcslen(const wchar_t *);  size_t  wcslen(const wchar_t *);
 wchar_t *wcsncat(wchar_t * __restrict, const wchar_t * __restrict, size_t);  wchar_t *wcsncat(wchar_t * __restrict, const wchar_t * __restrict, size_t);
 int     wcsncmp(const wchar_t *, const wchar_t *, size_t);  int     wcsncmp(const wchar_t *, const wchar_t *, size_t);
Line 142  double wcstod(const wchar_t * __restrict
Line 146  double wcstod(const wchar_t * __restrict
   
 #if defined(_ISOC99_SOURCE) || (__STDC_VERSION__ - 0) > 199901L || \  #if defined(_ISOC99_SOURCE) || (__STDC_VERSION__ - 0) > 199901L || \
     defined(_NETBSD_SOURCE)      defined(_NETBSD_SOURCE)
   float wcstof(const wchar_t * __restrict, wchar_t ** __restrict);
   long double wcstold(const wchar_t * __restrict, wchar_t ** __restrict);
   
 /* LONGLONG */  /* LONGLONG */
 long long int wcstoll(const wchar_t * __restrict,  long long int wcstoll(const wchar_t * __restrict,
         wchar_t ** __restrict, int);          wchar_t ** __restrict, int);
Line 161  wint_t putwc(wchar_t, FILE *);
Line 168  wint_t putwc(wchar_t, FILE *);
 wint_t putwchar(wchar_t);  wint_t putwchar(wchar_t);
   
 int fwide(FILE *, int);  int fwide(FILE *, int);
   
   wchar_t *fgetwln(FILE * __restrict, size_t * __restrict);
   int fwprintf(FILE * __restrict, const wchar_t * __restrict, ...);
   int fwscanf(FILE * __restrict, const wchar_t * __restrict, ...);
   int swprintf(wchar_t * __restrict, size_t n, const wchar_t * __restrict, ...);
   int swscanf(const wchar_t * __restrict, const wchar_t * __restrict, ...);
   int vfwprintf(FILE * __restrict, const wchar_t * __restrict, _BSD_VA_LIST_);
   int vswprintf(wchar_t * __restrict, size_t, const wchar_t * __restrict,
       _BSD_VA_LIST_);
   int vwprintf(const wchar_t * __restrict, _BSD_VA_LIST_);
   int wprintf(const wchar_t * __restrict, ...);
   int wscanf(const wchar_t * __restrict, ...);
   #if defined(_ISOC99_SOURCE) || (__STDC_VERSION__ - 0) > 199901L || \
       defined(_NETBSD_SOURCE)
   int vfwscanf(FILE * __restrict, const wchar_t * __restrict, _BSD_VA_LIST_);
   int vswscanf(const wchar_t * __restrict, const wchar_t * __restrict,
       _BSD_VA_LIST_);
   int vwscanf(const wchar_t * __restrict, _BSD_VA_LIST_);
   #endif
   #if defined(_NETBSD_SOURCE)
   struct tinfo;
   int t_putws(struct tinfo *, const wchar_t *, int, void (*)(wchar_t, void *),
       void *);
   wchar_t *wcsdup (const wchar_t *);
   int wcsncasecmp (const wchar_t *, const wchar_t *, size_t);
   int wcscasecmp(const wchar_t *, const wchar_t *);
   #endif
 __END_DECLS  __END_DECLS
   
 #ifndef WEOF  #ifndef WEOF

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.26

CVSweb <webmaster@jp.NetBSD.org>