[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.42 and 1.43

version 1.42, 2016/10/15 14:22:00 version 1.43, 2018/12/28 13:11:46
Line 133  wchar_t *wmemcpy(wchar_t * __restrict, c
Line 133  wchar_t *wmemcpy(wchar_t * __restrict, c
 wchar_t *wmemmove(wchar_t *, const wchar_t *, size_t);  wchar_t *wmemmove(wchar_t *, const wchar_t *, size_t);
 wchar_t *wmemset(wchar_t *, wchar_t, size_t);  wchar_t *wmemset(wchar_t *, wchar_t, size_t);
   
   #if defined(_NETBSD_SOURCE)
 size_t  wcslcat(wchar_t *, const wchar_t *, size_t);  size_t  wcslcat(wchar_t *, const wchar_t *, size_t);
 size_t  wcslcpy(wchar_t *, const wchar_t *, size_t);  size_t  wcslcpy(wchar_t *, const wchar_t *, size_t);
   #endif
   
   #if defined(_NETBSD_SOURCE) || \
       (_POSIX_C_SOURCE - 0 >= 200112L) || (_XOPEN_SOURCE - 0) >= 600
 int     wcswidth(const wchar_t *, size_t);  int     wcswidth(const wchar_t *, size_t);
 int     wctob(wint_t);  
 int     wcwidth(wchar_t);  int     wcwidth(wchar_t);
   #endif
   
   int     wctob(wint_t);
 unsigned long int wcstoul(const wchar_t * __restrict,  unsigned long int wcstoul(const wchar_t * __restrict,
         wchar_t ** __restrict, int);          wchar_t ** __restrict, int);
 long int wcstol(const wchar_t * __restrict,  long int wcstol(const wchar_t * __restrict,

Legend:
Removed from v.1.42  
changed lines
  Added in v.1.43

CVSweb <webmaster@jp.NetBSD.org>