代码拉取完成,页面将自动刷新
#include <ncurses.h>
#include <unistd.h>
#include <time.h>
#include <string.h>
#include <stdlib.h>
#include <pthread.h>
#include <errno.h>
void error_quit(char *msg)
{
perror(msg);
exit(1);
}
void *normal_quit(void *win)
{
while(getchar()!='q')
continue;
delwin((WINDOW *)win);
endwin();
echo();
printf("Exit. . .\n");
printf("\nExit Clock Now. . .\n");
exit(0);
}
int main(void)
{
int x,y;
time_t t;
char buf[30];
pthread_t thread;
WINDOW *win;
initscr();
curs_set(0);
noecho();
if(has_colors())
{
start_color();
use_default_colors();
init_pair(1,COLOR_CYAN,-1);
}
getmaxyx(stdscr,y,x);
if((win=newwin(5,40,y/2-5/2,x/2-40/2))==NULL)
error_quit("Create New Window Error!");
refresh();
box(win,0,0);
wrefresh(win);
getmaxyx(win,y,x);
if(pthread_create(&thread,NULL,normal_quit,win)==-1)
error_quit("Create thread Error!");
wattron(win,COLOR_PAIR(1));
while(1)
{
t=time(NULL);
snprintf(buf,strlen(ctime(&t)),"%s",ctime(&t));
mvwprintw(win,y/2,x/2-(strlen(buf)+1)/2,buf/*ctime(&t)*/);
//mvwprintw(win,y/2,x-1,"%c",'|');
wrefresh(win);
sleep(1);
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。