C/C++
anderson.lst
Associated article: C Customized Memory Allocators
Tags: Database C/C++
_C CUSTOMIZED MEMORY ALLOCATORS_
by Paul Anderson
[LISTING ONE]
/* sym1.c - symbol table data types */
#include <stdio.h>
#include "xalloc.h"
#include "defs.h"
main()
{
Symbol *p1, *p2;
char *ps = "test string&...


