[BACK]Return to printw.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libcurses

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libcurses/printw.c between version 1.14 and 1.15

version 1.14, 2000/04/14 02:53:54 version 1.15, 2000/04/15 13:17:04
Line 91  va_dcl
Line 91  va_dcl
  */   */
 int  int
 #ifdef __STDC__  #ifdef __STDC__
 wprintw(WINDOW * win, const char *fmt,...)  wprintw(WINDOW *win, const char *fmt,...)
 #else  #else
 wprintw(win, fmt, va_alist)  wprintw(win, fmt, va_alist)
         WINDOW *win;          WINDOW *win;
Line 194  __winwrite(cookie, buf, n)
Line 194  __winwrite(cookie, buf, n)
  *      This routine actually executes the printf and adds it to the window.   *      This routine actually executes the printf and adds it to the window.
  */   */
 int  int
 vwprintw(win, fmt, ap)  vwprintw(WINDOW *win, const char *fmt, va_list ap)
         WINDOW *win;  
         const char *fmt;  
         va_list ap;  
 {  {
         FILE   *f;          FILE   *f;
   

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15

CVSweb <webmaster@jp.NetBSD.org>