1 2 3 4 5 6 7 8 9
#ifndef INCLUDED_operhash_h #define INCLUDED_operhash_h void init_operhash(void); const char *operhash_add(const char *name); const char *operhash_find(const char *name); void operhash_delete(const char *name); #endif