[Next] [Previous] [Up] [Top] [Contents] [Index]

11.1 General Utilities

11.1.4 Memory Management


Ptr Malloc(long size);
void Free(Ptr p);
Ptr Realloc(Ptr p, long newSize);
 

Like their malloc() et al.; they cannot be mixed with malloc() et al., however.

Ptr ExpMalloc(long size);
void ExpFree(Ptr p);
Ptr ExpRealloc(Ptr p, long newSize);
 

Like their malloc() et al. for script-related data; they cannot be mixed with malloc() or Malloc() et al., however. Generally, you will not use these routines unless some case requires their use.


PSYX Programmer's Manual - 24 AUG 95
[Next] [Previous] [Up] [Top] [Contents] [Index]

Generated with CERN WebMaker