shithub: scc

ref: 6eaa4bfaae6f1836f8250830673a48a467e5d757
dir: /lib/coff32/coff32_unpack_ent.c/

View raw version
#include <assert.h>

#include "../../inc/coff32/syms.h"
#include "../../inc/coff32/coff32.h"

void
coff32_unpack_ent(packfun fun, unsigned char *buff, SYMENT *ent)
{
	int n;

	n = (*fun)(buff,
		   "'8lsscc",
		   &ent->n_name,
		   &ent->n_value,
		   &ent->n_scnum,
		   &ent->n_type,
		   &ent->n_sclass,
		   &ent->n_numaux);
	assert(n == SYMESZ);
}