45fcd61f85be3f84423603842ac309a4e818ab9d
[idzebra-moved-to-github.git] / dfa / imalloc.h
1 /*
2  * Copyright (C) 1994-1999, Index Data
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: imalloc.h,v $
7  * Revision 1.4  1999-02-02 14:50:09  adam
8  * Updated WIN32 code specific sections. Changed header.
9  *
10  * Revision 1.3  1997/10/27 14:27:13  adam
11  * Minor changes.
12  *
13  * Revision 1.2  1996/05/14 11:33:41  adam
14  * MEMDEBUG turned off by default.
15  *
16  * Revision 1.1  1994/09/26  10:16:54  adam
17  * First version of dfa module in alex. This version uses yacc to parse
18  * regular expressions. This should be hand-made instead.
19  *
20  */
21
22 void *imalloc        (size_t);
23 void *icalloc        (size_t);
24 void  ifree         (void *);
25
26 #if MEMDEBUG
27 void  imemstat       (void);
28
29 extern long alloc;
30 extern long max_alloc;
31 extern int  alloc_calls;
32 extern int  free_calls;
33
34 #endif
35
36