Update Debian Vcs-* fields to point to git repository
[onak.git] / gpgstats-0.0.2 / gpgstats.h
1 /*
2         gpgstats.h - Program to produce stats on a GPG keyring.
3         Written by Jonathan McDowell <noodles@earth.li>.
4
5         19/02/2000 - Started writing (sort of).
6 */
7
8 #ifndef __GPGSTATS_H_
9 #define __GPGSTATS_H_
10
11 #define VERSION "0.0.2"
12
13 #include "ll.h"
14
15 /* Structure to hold a key's info */
16 struct key {
17         unsigned long keyid;
18         char *name;
19         struct ll *sigs;
20         struct ll *signs;
21         struct ll *pi;
22         int colour;
23         int selfsigned;
24         int revoked;
25 };
26
27 void readkeys();
28 long checkselfsig();
29 int main(int argc, char *argv[]);
30
31 #endif