#ifndef SECTIONS_H #define SECTIONS_H #include #include int section_custom(struct wasmfs *w, FILE *f, unsigned long len); int section_type(struct wasmfs *w, FILE *f, unsigned long len); int section_import(struct wasmfs *w, FILE *f, unsigned long len); int section_function(struct wasmfs *w, FILE *f, unsigned long len); int section_table(struct wasmfs *w, FILE *f, unsigned long len); int section_memory(struct wasmfs *w, FILE *f, unsigned long len); int section_global(struct wasmfs *w, FILE *f, unsigned long len); int section_export(struct wasmfs *w, FILE *f, unsigned long len); int section_start(struct wasmfs *w, FILE *f, unsigned long len); int section_element(struct wasmfs *w, FILE *f, unsigned long len); int section_code(struct wasmfs *w, FILE *f, unsigned long len); int section_data(struct wasmfs *w, FILE *f, unsigned long len); int check_resizable_limits(FILE *f); #endif