comparison blobstat/struct.h @ 293:23e5b940cb8b

blobstat: mostly complete
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 21 Sep 2019 21:07:45 +0000
parents
children
comparison
equal deleted inserted replaced
292:6791499809e0 293:23e5b940cb8b
1 struct category {
2 char *name;
3 u_long accum;
4 struct category *next;
5 };
6
7 struct libentry {
8 char *libname;
9 char *member;
10 struct category *cat;
11 struct libentry *next;
12 };