MCPcopy Create free account
hub / github.com/RsyncProject/rsync / _free

Function _free

popt/poptint.h:19–24  ·  view source on GitHub ↗

* Wrapper to free(3), hides const compilation noise, permit NULL, return NULL. * @param p memory to free * @retval NULL always */

Source from the content-addressed store, hash-verified

17 * @retval NULL always
18 */
19static inline void *
20_free(const void * p)
21{
22 if (p != NULL) free((void *)p);
23 return NULL;
24}
25
26/* Bit mask macros. */
27typedef unsigned int __pbm_bits;

Callers 11

singleOptionDefaultValueFunction · 0.85
singleOptionHelpFunction · 0.85
poptSetOtherOptionHelpFunction · 0.85
poptSetExecPathFunction · 0.85
cleanOSEFunction · 0.85
poptResetContextFunction · 0.85
findProgramPathFunction · 0.85
poptSaveBitsFunction · 0.85
poptGetNextOptFunction · 0.85
poptFreeItemsFunction · 0.85
poptFreeContextFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected