Sha256: d349d78044e3da7681dc8939876b4e505e890a29e6d72e199e7b918bd470bea6

Contents?: true

Size: 802 Bytes

Versions: 234

Compression:

Stored size: 802 Bytes

Contents

/*
 * Copyright (c) 2007 Wayne Meissner. All rights reserved.
 *
 * For licensing, see LICENSE.SPECS
 */

#include <stdio.h>
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include <stdlib.h>

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); }

Version data entries

234 entries across 129 versions & 21 rubygems

Version Path
ffi-1.9.0 libtest/UnionTest.c
vagrant-shell-0.2.6 vendor/bundle/gems/ffi-1.8.1/libtest/UnionTest.c
sidekiq-statsd-0.1.1 vendor/ruby/1.9.1/gems/ffi-1.8.1/libtest/UnionTest.c
sidekiq-statsd-0.1.0 vendor/ruby/1.9.1/gems/ffi-1.8.1/libtest/UnionTest.c
vagrant-shell-0.2.5 vendor/bundle/gems/ffi-1.8.1/libtest/UnionTest.c
yakg-0.0.8 vendor/gems/ruby/1.8/gems/ffi-1.8.1/libtest/UnionTest.c
yakg-0.0.8 vendor/gems/ruby/2.0.0/gems/ffi-1.8.1/libtest/UnionTest.c
yakg-0.0.8 vendor/gems/ruby/1.9.1/gems/ffi-1.8.1/libtest/UnionTest.c
librarian-puppet-0.9.9 vendor/gems/ruby/1.9.1/gems/ffi-1.3.1/libtest/UnionTest.c
yakg-0.0.6 vendor/gems/ruby/1.9.1/gems/ffi-1.8.1/libtest/UnionTest.c
yakg-0.0.6 vendor/gems/ruby/1.8/gems/ffi-1.8.1/libtest/UnionTest.c
yakg-0.0.4 vendor/gems/ruby/1.8/gems/ffi-1.8.1/libtest/UnionTest.c
yakg-0.0.3 vendor/gems/ruby/1.8/gems/ffi-1.8.1/libtest/UnionTest.c
ffi-1.8.1-x86-mingw32 libtest/UnionTest.c
ffi-1.8.1 libtest/UnionTest.c
ffi-1.7.0-x86-mingw32 libtest/UnionTest.c
ffi-1.7.0 libtest/UnionTest.c
ffi-1.7.0.dev libtest/UnionTest.c
ffi-1.6.0-x86-mingw32 libtest/UnionTest.c
ffi-1.6.0 libtest/UnionTest.c