summaryrefslogtreecommitdiff
path: root/inc/types.h
blob: 4af17db26ddc7cd483ea86d4cddf89c77c6b812b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "macros.h"
#include <stddef.h>

#ifndef TYPES_H
#define TYPES_H

DEFINE_ARRAY(int);
DEFINE_ARRAY(uint32_t);
DEFINE_ARRAY(int32_t);
DEFINE_ARRAY(float);
DEFINE_ARRAY(double);

typedef struct Line {
  double m;
  double a;
} Line;

#endif // TYPES_H