[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.30.8.1 and 1.40

version 1.30.8.1, 2013/06/23 06:28:49 version 1.40, 2013/11/21 09:09:52
Line 145  long int wcstol(const wchar_t * __restri
Line 145  long int wcstol(const wchar_t * __restri
 double wcstod(const wchar_t * __restrict, wchar_t ** __restrict);  double wcstod(const wchar_t * __restrict, 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) || \
           (_POSIX_C_SOURCE - 0) >= 200112L || (_XOPEN_SOURCE - 0) >= 600
 float wcstof(const wchar_t * __restrict, wchar_t ** __restrict);  float wcstof(const wchar_t * __restrict, wchar_t ** __restrict);
 long double wcstold(const wchar_t * __restrict, wchar_t ** __restrict);  long double wcstold(const wchar_t * __restrict, wchar_t ** __restrict);
   
Line 181  int vwprintf(const wchar_t * __restrict,
Line 182  int vwprintf(const wchar_t * __restrict,
 int wprintf(const wchar_t * __restrict, ...);  int wprintf(const wchar_t * __restrict, ...);
 int wscanf(const wchar_t * __restrict, ...);  int wscanf(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) || \
           (_POSIX_C_SOURCE - 0) >= 200112L || (_XOPEN_SOURCE - 0) >= 600
 int vfwscanf(FILE * __restrict, const wchar_t * __restrict, __va_list);  int vfwscanf(FILE * __restrict, const wchar_t * __restrict, __va_list);
 int vswscanf(const wchar_t * __restrict, const wchar_t * __restrict,  int vswscanf(const wchar_t * __restrict, const wchar_t * __restrict,
     __va_list);      __va_list);
Line 222  size_t wcsxfrm_l(wchar_t *, const wchar_
Line 224  size_t wcsxfrm_l(wchar_t *, const wchar_
 int wcsncasecmp_l(const wchar_t *, const wchar_t *, size_t, locale_t);  int wcsncasecmp_l(const wchar_t *, const wchar_t *, size_t, locale_t);
 int wcscasecmp_l(const wchar_t *, const wchar_t *, locale_t);  int wcscasecmp_l(const wchar_t *, const wchar_t *, locale_t);
   
   size_t  wcsftime_l(wchar_t * __restrict, size_t, const wchar_t * __restrict,
               const struct tm * __restrict, locale_t);
   
 float wcstof_l(const wchar_t * __restrict, wchar_t ** __restrict, locale_t);  float wcstof_l(const wchar_t * __restrict, wchar_t ** __restrict, locale_t);
 double wcstod_l(const wchar_t * __restrict, wchar_t ** __restrict, locale_t);  double wcstod_l(const wchar_t * __restrict, wchar_t ** __restrict, locale_t);
 long double wcstold_l(const wchar_t * __restrict, wchar_t ** __restrict,  long double wcstold_l(const wchar_t * __restrict, wchar_t ** __restrict,

Legend:
Removed from v.1.30.8.1  
changed lines
  Added in v.1.40

CVSweb <webmaster@jp.NetBSD.org>