00001 00010 #ifndef TABLE_H 00011 #define TABLE_H 00012 00017 typedef struct TABLE *table_t; 00018 00023 table_t init_table(); 00024 00029 void free_table(table_t t); 00030 00040 int find(const table_t t, const char* s, int *val); 00041 00052 int add_symbole(table_t t, const char* s, int val); 00053 00058 void print_table(const table_t t); 00059 00060 00061 00062 #endif /*TABLE_H*/