You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef VARIABLE_H_
|
|
#define VARIABLE_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
uint8_t used :1;
|
|
uint8_t fromc :1;
|
|
uint8_t valtype :2;
|
|
uint32_t value;
|
|
} variable;
|
|
|
|
enum valtype {
|
|
STRING = 0,
|
|
INTEGER,
|
|
FLOAT,
|
|
FUNC
|
|
};
|
|
|
|
#endif // VARIABLE_H_
|