annotate blobstat/struct.h @ 368:82d5cc869bf1

sim-card-detect observations note added
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 26 Nov 2020 04:45:20 +0000 (2020-11-26)
parents 23e5b940cb8b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
293
23e5b940cb8b blobstat: mostly complete
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 struct category {
23e5b940cb8b blobstat: mostly complete
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 char *name;
23e5b940cb8b blobstat: mostly complete
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 u_long accum;
23e5b940cb8b blobstat: mostly complete
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 struct category *next;
23e5b940cb8b blobstat: mostly complete
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5 };
23e5b940cb8b blobstat: mostly complete
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6
23e5b940cb8b blobstat: mostly complete
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7 struct libentry {
23e5b940cb8b blobstat: mostly complete
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 char *libname;
23e5b940cb8b blobstat: mostly complete
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 char *member;
23e5b940cb8b blobstat: mostly complete
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 struct category *cat;
23e5b940cb8b blobstat: mostly complete
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11 struct libentry *next;
23e5b940cb8b blobstat: mostly complete
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 };