Table of Contents

NAME

QccFree - free allocated memory

SYNOPSIS

#include "libQccPack.h"

QccFree(p)

DESCRIPTION

QccFree() frees a pointer p via a call to free(3) . Subsequently, p is set to NULL. If p is NULL to begin with, nothing is done.

QccFree() is implemented as a macro:

#define QccFree(p) (p != NULL) ? free(p) :(void)0, (p) = NULL

SEE ALSO

free(3) , QccPack(3)

AUTHOR

Copyright (C) 1997-2021 James E. Fowler


Table of Contents



Get QccPack at SourceForge.net. Fast, secure and Free Open Source software downloads