forked from mozilla/cbindgen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalias.compat.c
More file actions
55 lines (44 loc) · 872 Bytes
/
Copy pathalias.compat.c
File metadata and controls
55 lines (44 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
enum Status
#if defined(__cplusplus) || __STDC_VERSION__ >= 202311L
: uint32_t
#endif // defined(__cplusplus) || __STDC_VERSION__ >= 202311L
{
Ok,
Err,
};
#ifndef __cplusplus
#if __STDC_VERSION__ >= 202311L
typedef enum Status Status;
#else
typedef uint32_t Status;
#endif // __STDC_VERSION__ >= 202311L
#endif // __cplusplus
typedef struct {
int32_t a;
float b;
} Dep;
typedef struct {
int32_t a;
int32_t b;
Dep c;
} Foo_i32;
typedef Foo_i32 IntFoo;
typedef struct {
double a;
double b;
Dep c;
} Foo_f64;
typedef Foo_f64 DoubleFoo;
typedef int32_t Unit;
typedef Status SpecialStatus;
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
void root(IntFoo x, DoubleFoo y, Unit z, SpecialStatus w);
#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus