Files
learning_c/ch_05/alloc_demo/alloc.h
T
kdeng00 cdbd6d2ad1 Address arithmetic
Added example for address arithmetic demo using alloc
2021-11-15 21:15:20 -05:00

11 lines
134 B
C

#define ALLOCSIZE 9500
static char allocbuf[ALLOCSIZE];
static char *allocp = allocbuf;
char *alloc(int n);
void afree(char *p);