libqaeda

Unnamed repository; edit this file 'description' to name the repository.
Info | Log | Files | Refs | README | LICENSE

ctx.c (180B)


      1 #include "lq/ctx.h"
      2 #include "lq/mem.h"
      3 
      4 LQCtx* lq_ctx_new() {
      5 	LQCtx *ctx;
      6 
      7 	ctx = lq_alloc(sizeof(LQCtx));
      8 	return ctx;
      9 }
     10 
     11 void lq_ctx_free(LQCtx *ctx) {
     12 	lq_free((void*)ctx);
     13 }