view name_dictionary.h @ 119:f2e2460b4011

draw_title
author e085768
date Sun, 19 Jun 2011 02:16:20 +0900
parents 67c843471b77
children
line wrap: on
line source

#ifndef NAME_DICTIONARY_H
#define NAME_DICTIONARY_H

int hash_func(const char *string, int hash_size);
const char *refer_name_dictionary(const char *string);
void delete_name_dictionary(const char *string);
int init_name_dictionary();


#endif