reactor-c 1.0
C Runtime for Lingua Franca
Loading...
Searching...
No Matches
type_converter.h
Go to the documentation of this file.
1
14
15#ifndef TYPE_CONVERTER_H_
16#define TYPE_CONVERTER_H_
17
18#define PASTE(x, y) x##y
19
20#define RESOLVE(i, o, in) PASTE(convert__##i, _to__##o)(in)
21
34#define DO_CONVERT(fromType, toType, value) RESOLVE(fromType, toType, value)
35
36#endif // TYPE_CONVERTER_H_