📄 msgcom.h
字号:
/* msgcom.h */#include <errno.h>#include <sys/types.h>#include <sys/ipc.h>#include <sys/msg.h>#define MSGKEY 5670struct texttype { int appli_in; int appli_exit;};struct msgtype { long mtype; struct texttype text;};int UP(s)int s;{ s=s+1; return(s);}int DOWN(s)int s;{ s=s-1; return(s);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -