This commit is contained in:
jl777
2019-02-17 06:32:17 -11:00
parent 2ee3594c1b
commit fa7ad1f44b
3 changed files with 6 additions and 7 deletions

View File

@@ -162,7 +162,7 @@ int32_t mvaddch(int32_t y, int32_t x, chtype ch)
int32_t waddstr(WINDOW *win, const char *str)
{
int32_t i;
fprintf(stderr,"%s\n",str);
//fprintf(stderr,"%s\n",str);
for (i=0; str[i]!=0; i++)
waddch(win,str[i]);
return(0);