MCPcopy Create free account
hub / github.com/F-Stack/f-stack / XXH32_createState

Function XXH32_createState

freebsd/contrib/zstd/lib/common/xxhash.c:493–496  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

491****************************************************/
492
493XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void)
494{
495 return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t));
496}
497XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr)
498{
499 XXH_free(statePtr);

Callers

nothing calls this directly

Calls 1

XXH_mallocFunction · 0.70

Tested by

no test coverage detected