Update of /cvsroot/digraphanalysis/digraphanalysis/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15960/src
Modified Files:
Tag: JBREKER
main.c main.h node.c node.h
Log Message:
#include "pgpkey.h" -> #include "node.h"
Index: node.h
===================================================================
RCS file: /cvsroot/digraphanalysis/digraphanalysis/src/Attic/node.h,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -C2 -d -r1.1.2.1 -r1.1.2.2
*** node.h 20 Mar 2005 17:26:47 -0000 1.1.2.1
--- node.h 20 Mar 2005 17:30:48 -0000 1.1.2.2
***************
*** 16,22 ****
*/
! #ifndef _PGPKEY_H_
! #define _PGPKEY_H_
#include "list.h"
--- 16,22 ----
*/
! #ifndef _NODE_H_
! #define _NODE_H_
#include "list.h"
***************
*** 38,40 ****
pgpkey_t *pgpkey_new(char *, char *);
! #endif
--- 38,40 ----
pgpkey_t *pgpkey_new(char *, char *);
! #endif /* _NODE_H_ */
Index: node.c
===================================================================
RCS file: /cvsroot/digraphanalysis/digraphanalysis/src/Attic/node.c,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -C2 -d -r1.1.2.1 -r1.1.2.2
*** node.c 20 Mar 2005 17:26:47 -0000 1.1.2.1
--- node.c 20 Mar 2005 17:30:48 -0000 1.1.2.2
***************
*** 21,25 ****
#include "list.h"
! #include "pgpkey.h"
int pgpkey_compare(void *key1, void *key2)
--- 21,25 ----
#include "list.h"
! #include "node.h"
int pgpkey_compare(void *key1, void *key2)
Index: main.c
===================================================================
RCS file: /cvsroot/digraphanalysis/digraphanalysis/src/main.c,v
retrieving revision 1.2.2.2
retrieving revision 1.2.2.3
diff -C2 -d -r1.2.2.2 -r1.2.2.3
*** main.c 20 Mar 2005 04:32:29 -0000 1.2.2.2
--- main.c 20 Mar 2005 17:30:48 -0000 1.2.2.3
***************
*** 29,33 ****
#include "list.h"
#include "main.h"
! #include "pgpkey.h"
int analyze_key(pgpkey_t *key, list_t *keys, list_t *nnlist, list_t *nslist, list_t *snlist, list_t *sslist)
--- 29,33 ----
#include "list.h"
#include "main.h"
! #include "node.h"
int analyze_key(pgpkey_t *key, list_t *keys, list_t *nnlist, list_t *nslist, list_t *snlist, list_t *sslist)
Index: main.h
===================================================================
RCS file: /cvsroot/digraphanalysis/digraphanalysis/src/main.h,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -C2 -d -r1.1.2.1 -r1.1.2.2
*** main.h 20 Mar 2005 04:09:14 -0000 1.1.2.1
--- main.h 20 Mar 2005 17:30:48 -0000 1.1.2.2
***************
*** 23,27 ****
#include "list.h"
! #include "pgpkey.h"
int analyze_key(pgpkey_t *, list_t *, list_t *, list_t *, list_t *, list_t *);
--- 23,27 ----
#include "list.h"
! #include "node.h"
int analyze_key(pgpkey_t *, list_t *, list_t *, list_t *, list_t *, list_t *);
|