]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - ncurses/widechar/lib_in_wch.c
ncurses 5.7 - patch 20091017
[ncurses.git] / ncurses / widechar / lib_in_wch.c
index 39af409d7945e1d3c1d4ea8a24ac41be845cddf4..5cd92e382de4f3a5d5a329a5cda5dd9e5987b8ed 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * Copyright (c) 2002,2004 Free Software Foundation, Inc.                   *
+ * Copyright (c) 2002-2004,2006 Free Software Foundation, Inc.              *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
  * copy of this software and associated documentation files (the            *
@@ -27,7 +27,7 @@
  ****************************************************************************/
 
 /****************************************************************************
- * Author: Thomas Dickey 2002,2004                                          *
+ * Author: Thomas Dickey                                                    *
  ****************************************************************************/
 
 /*
 
 #include <curses.priv.h>
 
-MODULE_ID("$Id: lib_in_wch.c,v 1.3 2004/05/16 00:13:52 tom Exp $")
+MODULE_ID("$Id: lib_in_wch.c,v 1.4 2006/09/03 15:41:22 tom Exp $")
 
 NCURSES_EXPORT(int)
-win_wch(WINDOW *win, cchar_t * wcval)
+win_wch(WINDOW *win, cchar_t *wcval)
 {
     int row, col;
     int code = OK;
@@ -53,6 +53,7 @@ win_wch(WINDOW *win, cchar_t * wcval)
        getyx(win, row, col);
 
        *wcval = win->_line[row].text[col];
+       TR(TRACE_CCALLS, ("data %s", _tracecchar_t(wcval)));
     } else {
        code = ERR;
     }