nostrdb

an unfairly fast embedded nostr database backed by lmdb
git clone git://jb55.com/nostrdb
Log | Files | Refs | Submodules | README | LICENSE

coerce.h (300B)


      1 #ifndef COERCE_H
      2 #define COERCE_H
      3 
      4 #include <assert.h>
      5 
      6 #include "symbols.h"
      7 #include "parser.h"
      8 
      9 int __flatcc_fb_coerce_scalar_type(fb_parser_t *P,
     10         fb_symbol_t *sym, fb_scalar_type_t st, fb_value_t *value);
     11 #define fb_coerce_scalar_type __flatcc_fb_coerce_scalar_type
     12 
     13 #endif /* COERCE_H */