◄Up► ◄Contents► ◄Index► ◄Back► ─────PWB Extensions───────────────────────────────────────────────────────── Syntax: char far *Falloc( long size ); void Fdalloc( char far *buffer ); Returns: Falloc returns a pointer to the buffer allocated, or NULL if no memory is available. See: fpbToVm, VMAlloc, VMFree, VMTofpb, VMSize Falloc and Fdalloc manage memory for use in PWB extensions. Use them in place of malloc, free, and other C heap functions. Falloc allocates memory and returns a pointer to the memory. The size parameter specifies the number of bytes allocated. Fdalloc frees memory previously allocated by Falloc. The buffer parameter is a pointer to the memory to be freed. -♦-