Main Page | File List | Globals

table.h

Go to the documentation of this file.
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*/

Generated on Mon Nov 10 16:02:57 2008 for Calculette by  doxygen 1.3.9.1