14 lines
295 B
C
14 lines
295 B
C
/*
|
|
* The Amsterdam Compiler Kit
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
*/
|
|
#ifndef UTIL_TOPGEN_HASH_H
|
|
#define UTIL_TOPGEN_HASH_H
|
|
|
|
/* util/topgen/hash.c */
|
|
void addtohashtable(char *s, int n);
|
|
void printhashtable(void);
|
|
|
|
#endif /* UTIL_TOPGEN_HASH_H */
|
|
|