skalibs

Mirror/fork of https://skarnet.org/software/skalibs/
git clone https://ccx.te2000.cz/git/skalibs
Log | Files | Refs | README | LICENSE

genqdyn_free.c (166B)


      1 /* ISC license. */
      2 
      3 #include <skalibs/stralloc.h>
      4 #include <skalibs/genqdyn.h>
      5 
      6 void genqdyn_free (genqdyn *g)
      7 {
      8   stralloc_free(&g->queue) ;
      9   *g = genqdyn_zero ;
     10 }