⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 support.c

📁 Newlib 嵌入式 C库 标准实现代码
💻 C
字号:
/* * support.c -- minimal support functions. This is to keep the exit code * 	generic enough that pattern matching from expect should be easier. */#if defined (unix)#define PRINT printf		/* so we can test on a native system */#else#define PRINT iprintf		/* this is only in newlib */#endifintfail (str)char *str;{     PRINT ("FAIL: %s\n", str);}intpass (str)char *str;{     PRINT ("PASS: %s\n", str);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -