Added dict.
[idzebra-moved-to-github.git] / dict / lookup.c
1 /*
2  * Copyright (C) 1994, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: lookup.c,v $
7  * Revision 1.1  1994-08-16 16:26:48  adam
8  * Added dict.
9  *
10  */
11
12 #include <stdlib.h>
13 #include <string.h>
14 #include <stdio.h>
15 #include <assert.h>
16
17 #include <dict.h>
18
19 int dict_lookup (Dict dict, Dict_char *p)
20 {
21     return 0;
22 }
23
24