11.1 General Utilities
Ptr Malloc(long size); void Free(Ptr p); Ptr Realloc(Ptr p, long newSize);
Like theirmalloc()
et al.; they cannot be mixed withmalloc()
et al., however.
Ptr ExpMalloc(long size); void ExpFree(Ptr p); Ptr ExpRealloc(Ptr p, long newSize);
Like theirmalloc()
et al. for script-related data; they cannot be mixed withmalloc()
orMalloc()
et al., however. Generally, you will not use these routines unless some case requires their use.
Generated with CERN WebMaker