shithub: scc

ref: 8ad82c1a61620e3b865bfbe937b4ff9440383091
dir: /src/libmach/getindex.c/

View raw version
#include <stdio.h>

#include <scc/mach.h>

#include "libmach.h"

static int (*funv[])(int, long*, Objsymdef**, FILE*) = {
	[COFF32] = coff32getidx,
};

int
getindex(int type, long *nsyms, Objsymdef **head, FILE *fp)
{
	int fmt;

	fmt = FORMAT(type);
	if (fmt >= NFORMATS)
		return -1;

	return (*funv[fmt])(type, nsyms, head, fp);
}