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.

21 lines
245 B
C

#ifndef VARIABLE_H_
#define VARIABLE_H_
7 years ago
#include <stdint.h>
typedef struct {
uint8_t used :1;
uint8_t fromc :1;
uint8_t valtype :2;
7 years ago
uint32_t value;
} variable;
enum valtype {
STRING = 0,
INTEGER,
FLOAT,
FUNC
7 years ago
};
#endif // VARIABLE_H_