view blobstat/struct.h @ 373:754be25cd6a0

new-aec-defaults: read out from the DSP
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 29 Jul 2021 09:48:50 +0000
parents 23e5b940cb8b
children
line wrap: on
line source

struct category {
	char	*name;
	u_long	accum;
	struct	category *next;
};

struct libentry {
	char	*libname;
	char	*member;
	struct	category *cat;
	struct	libentry *next;
};