libqaeda

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

ctx.h (214B)


      1 #ifndef LIBQAEDA_CTX_H_
      2 #define LIBQAEDA_CTX_H_
      3 
      4 #define CTX_BITS 64
      5 
      6 struct lq_ctx_t {
      7 	char *flag;
      8 };
      9 typedef struct lq_ctx_t LQCtx;
     10 
     11 LQCtx* lq_ctx_new();
     12 void lq_ctx_free(LQCtx *ctx);
     13 
     14 #endif // LIBQAEDA_CTX_H_