1 |
/* $Header$ */
|
2 |
|
3 |
/* IJS_SM_FILE_PUBLIC */
|
4 |
|
5 |
#ifndef TCLALLOC_H_INCLUDED
|
6 |
#define TCLALLOC_H_INCLUDED
|
7 |
|
8 |
#ifdef MODULE_TCLALLOC
|
9 |
#define DECMOD_TCLALLOC
|
10 |
#else
|
11 |
#define DECMOD_TCLALLOC extern
|
12 |
#endif
|
13 |
|
14 |
DECMOD_TCLALLOC char *TclpAlloc(unsigned int nbytes);
|
15 |
DECMOD_TCLALLOC void TclpFree(char *cp);
|
16 |
DECMOD_TCLALLOC char *TclpCalloc(size_t num, size_t size);
|
17 |
DECMOD_TCLALLOC char *TclpRealloc(char *cp, unsigned int nbytes);
|
18 |
DECMOD_TCLALLOC const char *TclpCversion(void);
|
19 |
DECMOD_TCLALLOC const char *TclpHversion(void);
|
20 |
|
21 |
#define TCLALLOC_H_VERSION ("$Header$")
|
22 |
|
23 |
#endif
|
24 |
|
25 |
|
26 |
/*
|
27 |
* $Log: tclalloc.h,v $
|
28 |
* Revision 1.4 2001/07/15 06:44:32 dtashley
|
29 |
* Keyword expansion mistake corrected.
|
30 |
*
|
31 |
* Revision 1.3 2001/07/15 06:40:10 dtashley
|
32 |
* Adaptation of GNU arbitrary-size integer package integrated into IjuScripter
|
33 |
* and IjuConsole.
|
34 |
*
|
35 |
* Revision 1.2 2001/07/15 06:07:15 dtashley
|
36 |
* Moved out of binary mode, preparing for use with CVS.
|
37 |
*/
|
38 |
/* $History: tclalloc.h $
|
39 |
*
|
40 |
* ***************** Version 1 *****************
|
41 |
* User: Dtashley Date: 1/02/01 Time: 12:18a
|
42 |
* Created in $/IjuScripter, IjuConsole/Source/Tcl Base
|
43 |
* Initial check-in.
|
44 |
*/
|
45 |
|
46 |
/* End of TCLALLOC.H */ |