[Previous] [Contents] [Next]

globfree()

Free storage allocated by a call to glob()

Synopsis:

#include <glob.h>

void globfree( glob_t* pglob );

Library:

libc

Description:

The globfree() function frees the storage allocated by a call to glob().

Classification:

POSIX 1003.1a

Safety:
Cancellation point No
Interrupt handler No
Signal handler Yes
Thread Yes

Caveats:

Don't change the values in pglob between calling glob() and globfree().

See also:

glob(), wordexp(), wordfree()


[Previous] [Contents] [Next]