testos.h
来自「mini http server,可以集成嵌入到程序中,实现简单的web功能」· C头文件 代码 · 共 15 行
H
15 行
/*
* Common definitions for TestOS
*/
#ifndef _TESTOS_H_
#define _TESTOS_H_
#define OK { cerr<<"OK"<<endl; } /* test succeeded */
#define MAYBE { cerr<<"MAYBE"<<endl; } /* test could not be completed */
#define FAILED(x) { cerr<<"FAILED.."<<(x)<<endl; } /* test failed */
#endif /* _TESTOS_H_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?