?? harness.h
字號:
/* Common code for most VMX test cases. To use, include this file, then write a routine named test() that performs a series of calls to check(). */#include <stdlib.h>#include <stdio.h>#include <altivec.h>static int failed;static void test (void);static voidcheck (int result, const char *name){ if (!result) { failed++; printf ("fail %s\n", name); }} intmain (void){ test (); if (failed) abort (); return 0;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -