view blobstat/struct.h @ 357:ebb9377cf52c

fluid-mnf/machine.c: read operation time report message changed to match the reality of the number being in ms, not s
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 13 Mar 2020 20:56:47 +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;
};