1 /************************************************
2 
3   util.h -
4 
5   $Author: matz $
6   $Date: 1998/01/16 12:35:49 $
7   created at: Thu Mar  9 11:55:53 JST 1995
8 
9   Copyright (C) 1993-1998 Yukihiro Matsumoto
10 
11 ************************************************/
12 
13 /*
14    Some small modifications for Namazu
15       by ccsatoru@vega.aichi-u.ac.jp [05/21/1998]
16 */
17 
18 #include "namazu.h"
19 
20 #ifndef UTIL_H
21 #define UTIL_H
22 
23 unsigned long scan_hex();
24 unsigned long scan_oct();
25 
26 /*
27   added by ccsatoru@aichi-u.ac.jp
28  */
29 
30 void *xrealloc();
31 void *xmalloc();
32 void tr();
33 void chop();
34 
35 #if !defined(HAVE_MEMMOVE)
36 void *memmove();
37 #endif
38 
39 void decode_url_string();
40 void tolower_string();
41 void delete_backslashes();
42 
43 uchar *lastc();
44 size_t freadx();
45 
46 #endif /* UTIL_H */
47 
48