view name_dictionary.h @ 101:67c843471b77

add name_dictionary.cc
author Atuto SHIROMA <e095729@ie.u-ryukyu.ac.jp>
date Thu, 02 Jun 2011 19:50:06 +0900
parents
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