[digraphanalysis-cvs] digraphanalysis/src gpg2digraph.c, gpg2digraph.h,
Status: Planning
Brought to you by:
jbreker
|
From: Jeff B. <jb...@us...> - 2005-09-05 17:06:23
|
Update of /cvsroot/digraphanalysis/digraphanalysis/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4473 Modified Files: gpg2digraph.c gpg2digraph.h Log Message: move header stuff into the header file. Index: gpg2digraph.c =================================================================== RCS file: /cvsroot/digraphanalysis/digraphanalysis/src/gpg2digraph.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** gpg2digraph.c 5 Jul 2005 00:42:11 -0000 1.1 --- gpg2digraph.c 5 Sep 2005 17:06:15 -0000 1.2 *************** *** 23,34 **** #include <unistd.h> ! char *do_pub(void); ! void do_sig(char *); ! char *do_uid(char *); ! unsigned int encode(char *); ! void func001(unsigned int); ! char *get_fingerprint(); ! char *get_keyid(); ! char *get_name(); /* Handle a sig line. --- 23,27 ---- #include <unistd.h> ! #include "gpg2digraph.h" /* Handle a sig line. Index: gpg2digraph.h =================================================================== RCS file: /cvsroot/digraphanalysis/digraphanalysis/src/gpg2digraph.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** gpg2digraph.h 5 Sep 2005 14:03:39 -0000 1.1 --- gpg2digraph.h 5 Sep 2005 17:06:15 -0000 1.2 *************** *** 0 **** --- 1,10 ---- + + char *do_pub(void); + void do_sig(char *); + char *do_uid(char *); + unsigned int encode(char *); + void func001(unsigned int); + char *get_fingerprint(); + char *get_keyid(); + char *get_name(); + |