nanowasm/private_include/search.h

16 lines
227 B
C

#ifndef SEARCH_H
#define SEARCH_H
#include <nanowasm/nw.h>
#include <stdio.h>
struct search_fn
{
long start;
};
int search_exported_fn(const char *fn, const struct nw_mod *m, FILE *f,
struct search_fn *out);
#endif