BFLibC 0.1
C Library
Loading...
Searching...
No Matches
free.h
Go to the documentation of this file.
1
6#ifndef FREE_H
7#define FREE_H
8
9#define BFFree(x) if (x) { free(x); x = 0; }
10
11#endif // FREE_H
12