ae2f_docs
main.c
Go to the documentation of this file.
1#include <ae2f/BitVec.h>
2
3#include <ae2f/Call.h>
4
5#include <ae2f/Cmp.h>
6
7#include <ae2f/Float.h>
8#include <ae2f/Cast.h>
9
10#include <ae2f/errGlob.h>
11#include <stdio.h>
12
13#include <ae2f/Pack/Beg.h>
14#include <ae2f/Pack/End.h>
15
16#include <ae2f/Pack/Num.auto.h>
17
18ae2f_structdef_v(struct, a, b, c, d) {
19 int a;
20};
21
22ae2f_structdef_n(union, t, q) { int a; };
23ae2f_structdef(union, qq) { int a; };
24
25int main() {
26 b v;
27 t _v;
28
29 int* restrict hello = 0;
30
31 printf("%d\n", ae2f_PackCount);
32 return 0;
33}
#define ae2f_structdef(key, name)
Definition Cast.h:110
#define ae2f_structdef_v(key, name,...)
Definition Cast.h:105
#define ae2f_structdef_n(key, name,...)
Definition Cast.h:109
#define ae2f_PackCount
Pre-defined structure packed byte count.
Definition Num.auto.h:15