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

📄 test.h

📁 HIP 硬件设备管理标准接口
💻 H
字号:
#ifndef dTest_h#define dTest_h#include <stdio.h>static int num_ok   = 0;static int num_fail = 0;static voidTestFunction( const char *str, const char *file, int line, bool expr ){  if ( expr )       num_ok++;  else     {       printf( "FAIL %s:%d: %s\n", file, line, str );       num_fail++;     }}#define Test(expr) TestFunction( __STRING(expr), __FILE__, __LINE__, expr )static intTestResult(){  if ( num_fail )       return 1;  return 0;}#endif

⌨️ 快捷键说明

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