Table of Contents
QccFree - free allocated memory
#include "libQccPack.h"
QccFree(p)
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
free(3)
, QccPack(3)
Copyright
(C) 1997-2021 James E. Fowler
Table of Contents