shithub: scc

ref: 2700167e6aa52cedc2fc267c0784817acc3b0687
dir: /src/libmach/namindex.c/

View raw version
#include <stdio.h>

#include <scc/mach.h>

#include "libmach.h"

extern namidxfun_t namidxv[];

char *
namindex(int type)
{
	int fmt;
	namidxfun_t fn;

	fmt = FORMAT(type);
	if (fmt >= NFORMATS)
		return NULL;
	fn = namidxv[fmt];
	return (*fn)();
}