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

Diff for /src/include/wchar.h between version 1.12 and 1.13

version 1.12, 2011/04/06 11:39:42 version 1.13, 2011/04/24 07:46:58
Line 172 
Line 172 
   
 int fwide(FILE *, int);  int fwide(FILE *, int);
   
   int fwprintf(FILE * __restrict, const wchar_t * __restrict, ...);
   int swprintf(wchar_t * __restrict, size_t, const wchar_t * __restrict, ...);
   int vfwprintf(FILE * __restrict, const wchar_t * __restrict, __va_list);
   int vswprintf(wchar_t * __restrict, size_t, const wchar_t * __restrict,
           __va_list);
   int vwprintf(const wchar_t * __restrict, __va_list);
   int wprintf(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.12  
changed lines
  Added in v.1.13