ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Convert-UUlib/uulib/uucheck.c
(Generate patch)

Comparing Convert-UUlib/uulib/uucheck.c (file contents):
Revision 1.15 by root, Fri Oct 10 16:54:45 2008 UTC vs.
Revision 1.16 by root, Mon Aug 24 04:38:23 2009 UTC

51#include <uudeview.h> 51#include <uudeview.h>
52#include <uuint.h> 52#include <uuint.h>
53#include <fptools.h> 53#include <fptools.h>
54#include <uustring.h> 54#include <uustring.h>
55 55
56char * uucheck_id = "$Id: uucheck.c,v 1.15 2008/10/10 16:54:45 root Exp $"; 56char * uucheck_id = "$Id: uucheck.c,v 1.16 2009/08/24 04:38:23 root Exp $";
57 57
58/* 58/*
59 * Arbitrary number. This is the maximum number of part numbers we 59 * Arbitrary number. This is the maximum number of part numbers we
60 * store for our have-parts and missing-parts lists 60 * store for our have-parts and missing-parts lists
61 */ 61 */
1253/* 1253/*
1254 * At this point, all files are read in and stored in the 1254 * At this point, all files are read in and stored in the
1255 * "UUGlobalFileList". Do some checking. All parts there? 1255 * "UUGlobalFileList". Do some checking. All parts there?
1256 **/ 1256 **/
1257 1257
1258uulist * 1258void UUEXPORT
1259UUCheckGlobalList (void) 1259UUCheckGlobalList (void)
1260{ 1260{
1261 int misparts[MAXPLIST], haveparts[MAXPLIST]; 1261 int misparts[MAXPLIST], haveparts[MAXPLIST];
1262 int miscount, havecount, count, flag, part; 1262 int miscount, havecount, count, flag, part;
1263 uulist *liter=UUGlobalFileList, *prev; 1263 uulist *liter=UUGlobalFileList, *prev;
1482 while (liter) { 1482 while (liter) {
1483 liter->PREV = prev; 1483 liter->PREV = prev;
1484 prev = liter; 1484 prev = liter;
1485 liter = liter->NEXT; 1485 liter = liter->NEXT;
1486 } 1486 }
1487
1488 return UUGlobalFileList;
1489} 1487}
1490 1488

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines