ctest 0.5.1

Automated testing of FFI bindings in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdint.h>

#ifndef SUPPRESS_ERROR
#error Expected SUPPRESS_ERROR to be defined (testing per-file defines)
#endif

struct VecU8
{
    uint8_t x;
    uint8_t y;
};

struct VecU16
{
    uint16_t x;
    uint16_t y;
};