📄 misc.c
字号:
/* * Author strongly advices against using this code, or a part of it, * in an application designed to run on any Microsoft(tm) platform. * * See doc/README for more information about COPYING terms. */#include "mcd.h"int select_wait(int fd, int sec) { struct timeval tv; fd_set se; FD_ZERO(&se); FD_SET(fd,&se); tv.tv_sec = sec; tv.tv_usec = 0; return select(fd+1,&se,NULL,NULL,&tv);}void mesg(int fd, char *msg) { write(fd,msg,str_len(msg));}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -