1AUTFREEBLOCK(3) AUT FUNCTIONS AUTFREEBLOCK(3)
2
3
4
6 autfreeblock - releases a memory block
7
9 #include "aut101.h"
10 void autfreeblock( Pointer )
11 char ∗ Pointer;
12
14 Pointer Pointer to be given back to the system
15
17 autfreeblock frees a pointer. It is now a day just an encapsulation of
18 the system free function, but may evolve to a special allocator in the
19 future. Its use is strongly encouraged.
20
22 autfreeblock returns nothing.
23
25 #include "aut101.h"
26 char ∗Pointer;
27 Pointer = autallocblock( 1024 );
28 ...
29 autfreeblock( Pointer );
30
32 aut(1), autresizeblock(3), autallocheap(3), autallocblock(3), autfree‐
33 heap(3).
34
35
36
37
38
39
40ASIM/LIP6 October 1, 1997 AUTFREEBLOCK(3)