FreeCalypso > hg > freecalypso-reveng
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/blobstat/struct.h Sat Sep 21 21:07:45 2019 +0000 @@ -0,0 +1,12 @@ +struct category { + char *name; + u_long accum; + struct category *next; +}; + +struct libentry { + char *libname; + char *member; + struct category *cat; + struct libentry *next; +};