skalibs

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

genqdyn_push.c (192B)


      1 /* ISC license. */
      2 
      3 #include <skalibs/stralloc.h>
      4 #include <skalibs/genqdyn.h>
      5 
      6 int genqdyn_push (genqdyn *g, void const *p)
      7 {
      8   return stralloc_catb(&g->queue, (char const *)p, g->esize) ;
      9 }