| 491 | ****************************************************/ |
| 492 | |
| 493 | XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void) |
| 494 | { |
| 495 | return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t)); |
| 496 | } |
| 497 | XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) |
| 498 | { |
| 499 | XXH_free(statePtr); |
nothing calls this directly
no test coverage detected