gems.ffi-1.9.7.libtest.UnionTest.c Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sass-maven-plugin Show documentation
Show all versions of sass-maven-plugin Show documentation
A Maven Plugin that compiles Sass files.
/*
* Copyright (c) 2007 Wayne Meissner. All rights reserved.
*
* For licensing, see LICENSE.SPECS
*/
#include
#include
#include
#include
#include
typedef char s8;
typedef short s16;
typedef int s32;
typedef long long s64;
typedef float f32;
typedef double f64;
typedef union union_test {
char b;
short s;
int i;
long long j;
long l;
float f;
double d;
s8 a[10];
} union_test_t;
#define T(x, type) \
type union_align_##type(union_test_t* u) { return u->x; } \
union_test_t* union_make_union_with_##type(type value) { static union_test_t u; u.x = value; return &u; }
T(b, s8);
T(s, s16);
T(i, s32);
T(j, s64);
T(f, f32);
T(d, f64);
T(l, long);
unsigned int union_size() { return sizeof(union_test_t); }
© 2015 - 2025 Weber Informatics LLC | Privacy Policy