You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

loader.h 227B

123456789101112
  1. #ifndef L2_BC_LOADER
  2. #define L2_BC_LOADER
  3. #include "bytecode.h"
  4. #include "io.h"
  5. #include <stdio.h>
  6. int l2_bc_serialize(FILE *outf, unsigned char *data, size_t len);
  7. int l2_bc_load(FILE *inf, struct l2_io_writer *w);
  8. #endif