📄 missing95.c
字号:
/* popen and pclose are not part of win 95 and nt, but it appears that _popen and _pclose "work". if this won't load, use the return NULL statements. */#include <stdio.h>
FILE *popen(char *s, char *m) { return _popen(s, m); /* return NULL; */}
int pclose(FILE *f) { return _pclose(f); /* return NULL; */}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -