ref: b709b8fa6bd37944b2e0a53bef8df2fca5e9519e
dir: /src/libmach/forsym.c/
#include <stdio.h> #include <scc/mach.h> #include "libmach.h" int forsym(Obj *obj, int (*fn)(Objsym *, void *), void *data) { Objsym *sym; for (sym = obj->head; sym; sym = sym->next) { if (!(*fn)(sym, data)) return 0; } return 1; }