sdl_freewav(3) - Linux man page
Name
SDL_FreeWAV - Frees previously opened WAV dataSynopsis
#include "SDL.h"
void SDL_FreeWAV(Uint8 *audio_buf);
Description
After a WAVE file has been opened with SDL_LoadWAV its data can eventually be freed with SDL_FreeWAV. audio_buf is a pointer to the buffer created by SDL_LoadWAV.
See Also
SDL_LoadWAV