www.delorie.com/djgpp/doc/libc-2.01/libc_686.html   search  
Go to the first, previous, next, last section, table of contents.


xfree

Syntax

#include <stdlib.h>

void xfree(void *ptr);

Description

Frees memory allocated by xmalloc (see section xmalloc). This function guarantees that a NULL pointer is handled gracefully.

Example

void *f = xmalloc(100);
xfree(f);


Go to the first, previous, next, last section, table of contents.

  prev next   webmaster     delorie software   privacy  
  Copyright © 1997     Updated Apr 1997