repo.or.cz
/
knight_shuffling_tower.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add license
[knight_shuffling_tower.git]
/
hashmap.h
blob
abdbe15821806b7d35ff153b3bf0f41d1e30b9f3
1
#ifndef _HASHMAP_H_
2
# define _HASHMAP_H_
3
4
# include
"ast.h"
5
6
ast_var
*
find_var
(
const char
*
key
);
7
8
void
hashmap_initialize
();
9
10
#endif