shithub: scc

ref: 8e8710e0cbdc6f1aae24dfaecdbe04325c039a47
dir: /nm/nm.h/

View raw version

struct symbol {
	char *name;
	int type;
	unsigned long long value;
	unsigned long size;
};

struct objfile {
	int (*probe)(FILE *fp);
	void (*nm)(char *fname, char *member, FILE *fp);
};

/* main.c */
extern void printsyms(char *, char *, struct symbol *, size_t );