func-struct.c
来自「用于进行gcc测试」· C语言 代码 · 共 109 行
C
109 行
/* { dg-options "-std=gnu99" } *//* C99 6.5.2.2 Function calls. Test structure passing and return values involving decimal floating point types. */extern void abort (void);static int failcnt;/* Support compiling the test to report individual failures; default is to abort as soon as a check fails. */#ifdef DBG#include <stdio.h>#define FAILURE { printf ("failed at line %d\n", __LINE__); failcnt++; }#else#define FAILURE abort ();#endifstruct example{ _Decimal128 d128; char dummy1; _Decimal64 d64; char dummy2; _Decimal32 d32;} nums = { 1.0dl, 'a', 2.0dd, 'b', 3.0df };_Decimal32d32_field (struct example s){ return s.d32;}_Decimal64d64_field (struct example s){ return s.d64;}_Decimal128d128_field (struct example s){ return s.d128;}chardummy1_field (struct example s){ return s.dummy1;}chardummy2_field (struct example s){ return s.dummy2;}_Decimal32ptr_d32_field (struct example *s){ return s->d32;}_Decimal64ptr_d64_field (struct example *s){ return s->d64;}_Decimal128ptr_d128_field (struct example *s){ return s->d128;}charptr_dummy1_field (struct example *s){ return s->dummy1;}charptr_dummy2_field (struct example *s){ return s->dummy2;}intmain (){ if (d32_field (nums) != 3.0df) FAILURE if (d64_field (nums) != 2.0dd) FAILURE if (d128_field (nums) != 1.0dl) FAILURE if (dummy1_field (nums) != 'a') FAILURE if (dummy2_field (nums) != 'b') FAILURE if (ptr_d32_field (&nums) != 3.0df) FAILURE if (ptr_d64_field (&nums) != 2.0dd) FAILURE if (ptr_d128_field (&nums) != 1.0dl) FAILURE if (ptr_dummy1_field (&nums) != 'a') FAILURE if (ptr_dummy2_field (&nums) != 'b') FAILURE if (failcnt != 0) abort (); return 0;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?