Go to: Contents; Previous section; Beginning of section; Next file in section; Previous file in section.
None.
BEGINNING OF FILE
1: /****************************************************************************/
2: /* */
3: /* FACILITY: Generic Support Library */
4: /* */
5: /* MODULE: Object Memory Management Header */
6: /* */
7: /* AUTHOR: Steve Branam, Network Product Support Group, Digital */
8: /* Equipment Corporation, Littleton, MA, USA. */
9: /* */
10: /* DESCRIPTION: This header file contains forward declarations for the */
11: /* Object Memory Management module. */
12: /* */
13: /* REVISION HISTORY: */
14: /* */
15: /* V0.1-00 24-AUG-1994 Steve Branam */
16: /* */
17: /* Original version. */
18: /* */
19: /****************************************************************************/
20:
21: #ifndef __OBJALLOC_H /* If not already included. */
22: #define __OBJALLOC_H
23: #include "globdb.h" /* Program-specific global */
24: /* database. */
25:
26: /* */
27: /* Forward declarations. */
28: /* */
29:
30: char *obj_alloc();
31: char *obj_free();
32: char *new_str();
33: char *free_str();
34: void trace_new_obj();
35: void trace_free_obj();
36:
37: #endif /* If not already included. */
END OF FILE
TOTAL: 0 routines, 0 Avg Length
Go to: Contents; Previous section; Beginning of section; Next file in section; Previous file in section.