ref: 3a079f24c514f9783a7dd15e85a02eae4c25e695
dir: /src/libmach/objread.c/
#include <stdio.h>
#include <scc/mach.h>
#include "libmach.h"
static int (*funv[])(Obj *, FILE *) = {
[COFF32] = coff32read,
};
int
objread(Obj *obj, FILE *fp)
{
int fmt;
fmt = FORMAT(obj->type);
if (fmt >= NFORMATS)
return -1;
if ((*funv[fmt])(obj, fp) < 0)
return -1;
obj->fp = fp;
return 0;
}