?? struct-by-value-22_y.c
字號(hào):
#include <stdarg.h>#include "compat-common.h"#include "mixed-struct-defs.h"#include "mixed-struct-check.h"#ifdef SKIP_VAconst int test_va = 0;#elseconst int test_va = 1;#endif#define T(NAME, FIELDS, TYPE, FIELDINIT, FIELDTEST) \void \testva##NAME (int n, ...) \{ \ va_list ap; \ if (test_va) \ { \ struct S { FIELDS TYPE a[n]; } s; \ int fail = 0, i, j; \ \ va_start (ap, n); \ for (j = 0; j < 2; ++j) \ { \ s = va_arg (ap, struct S); \ for (i = 0; i < n; ++i) \ if (s.a[i] != 12 + n - i) \ ++fail; \ if (fail) \ { DEBUG_FAIL; } \ if (!j && va_arg (ap, int) != n) \ { DEBUG_FAIL; } \ FIELDTEST; \ } \ va_end (ap); \ } \}#include "struct-by-value-22_x.c"
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -