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

Diff for /src/include/wchar.h between version 1.19 and 1.20

version 1.19, 2011/07/04 04:37:34 version 1.20, 2011/10/16 13:20:51
Line 188 
Line 188 
 int vwprintf(const wchar_t * __restrict, __va_list);  int vwprintf(const wchar_t * __restrict, __va_list);
 int wprintf(const wchar_t * __restrict, ...);  int wprintf(const wchar_t * __restrict, ...);
   
   int fwscanf(FILE * __restrict, const wchar_t * __restrict, ...);
   int swscanf(const wchar_t * __restrict, const wchar_t * __restrict, ...);
   int vfwscanf(FILE * __restrict, const wchar_t * __restrict, __va_list);
   int vswscanf(const wchar_t * __restrict, const wchar_t * __restrict, __va_list);
   int vwscanf(const wchar_t * __restrict, __va_list);
   int wscanf(const wchar_t * __restrict, ...);
   
 #define getwc(f) fgetwc(f)  #define getwc(f) fgetwc(f)
 #define getwchar() getwc(stdin)  #define getwchar() getwc(stdin)
 #define putwc(wc, f) fputwc((wc), (f))  #define putwc(wc, f) fputwc((wc), (f))

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20