1 #ifndef ML_TABLE_H
2 #define ML_TABLE_H
3 
4 #include "minilang.h"
5 
6 #ifdef	__cplusplus
7 extern "C" {
8 #endif
9 
10 extern ml_type_t MLTableT[];
11 
12 void ml_table_init(stringmap_t *Globals);
13 ml_value_t *ml_table();
14 ml_value_t *ml_table_insert(ml_value_t *Table, ml_value_t *Name, ml_value_t *Value);
15 ml_value_t *ml_table_columns(ml_value_t *Table);
16 
17 #ifdef	__cplusplus
18 }
19 #endif
20 
21 #endif
22