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

Diff for /src/include/wchar.h between version 1.1 and 1.2

version 1.1, 2005/04/14 20:59:10 version 1.2, 2005/05/11 18:44:12
Line 84 
Line 84 
 #undef  _BSD_WCHAR_T_  #undef  _BSD_WCHAR_T_
 #endif  #endif
   
   #ifdef  _BSD_MBSTATE_T_
   typedef _BSD_MBSTATE_T_ mbstate_t;
   #undef  _BSD_MBSTATE_T_
   #endif
   
 #ifdef  _BSD_WINT_T_  #ifdef  _BSD_WINT_T_
 typedef _BSD_WINT_T_    wint_t;  typedef _BSD_WINT_T_    wint_t;
 #undef  _BSD_WINT_T_  #undef  _BSD_WINT_T_
Line 99 
Line 104 
 #endif  #endif
   
 __BEGIN_DECLS  __BEGIN_DECLS
   wint_t  btowc(int);
   size_t  mbrlen(const char * __restrict, size_t, mbstate_t * __restrict);
   size_t  mbrtowc(wchar_t * __restrict, const char * __restrict, size_t,
               mbstate_t * __restrict);
   int     mbsinit(const mbstate_t *);
   size_t  mbsrtowcs(wchar_t * __restrict, const char ** __restrict, size_t,
               mbstate_t * __restrict);
   size_t  wcrtomb(char * __restrict, wchar_t, mbstate_t * __restrict);
 wchar_t *wcscat(wchar_t * __restrict, const wchar_t * __restrict);  wchar_t *wcscat(wchar_t * __restrict, const wchar_t * __restrict);
 wchar_t *wcschr(const wchar_t *, wchar_t);  wchar_t *wcschr(const wchar_t *, wchar_t);
 int     wcscmp(const wchar_t *, const wchar_t *);  int     wcscmp(const wchar_t *, const wchar_t *);
Line 113 
Line 126 
             size_t);              size_t);
 wchar_t *wcspbrk(const wchar_t *, const wchar_t *);  wchar_t *wcspbrk(const wchar_t *, const wchar_t *);
 wchar_t *wcsrchr(const wchar_t *, wchar_t);  wchar_t *wcsrchr(const wchar_t *, wchar_t);
   size_t  wcsrtombs(char * __restrict, const wchar_t ** __restrict, size_t,
               mbstate_t * __restrict);
 size_t  wcsspn(const wchar_t *, const wchar_t *);  size_t  wcsspn(const wchar_t *, const wchar_t *);
 wchar_t *wcsstr(const wchar_t *, const wchar_t *);  wchar_t *wcsstr(const wchar_t *, const wchar_t *);
 wchar_t *wcstok(wchar_t * __restrict, const wchar_t * __restrict,  wchar_t *wcstok(wchar_t * __restrict, const wchar_t * __restrict,
Line 128 
Line 143 
   
 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);
   int     wctob(wint_t);
 __END_DECLS  __END_DECLS
   
 #endif /* !_WCHAR_H_ */  #endif /* !_WCHAR_H_ */

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2