1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/* -*- Mode: C; -*- */ /* */ /* rplx.c */ /* */ /* © Copyright Jamie A. Jennings 2018. */ /* LICENSE: MIT License (https://opensource.org/licenses/mit-license.html) */ /* AUTHOR: Jamie A. Jennings */ #include <stdlib.h> #include "config.h" #include "rplx.h" void rplx_free(Chunk *c) { ktable_free(c->ktable); free(c->code); if (c->filename) free(c->filename); }