summaryrefslogblamecommitdiffstats
path: root/private/ntos/ndis/testprot/tpdiff/tpdiff.c
blob: 7392278898f046122470bbc1758db0fc44021561 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749




















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                 
/*++

Copyright (c) 1990 Microsoft Corporation

Module Name:

    tpdiff.c

Abstract:

    This is the main component of the NDIS 3.0 MAC Tester log file program.

Author:

    Tom Adams (tomad) 2-Apr-1992

Revision History:

    2-Apr-1992    tomad

    created

--*/

#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>

#include <windows.h>

#include <stdio.h>
#include <stdlib.h>
#include <string.h>



//
// TpDiff function prototypes
//

DWORD
TpDiffInitializeFiles(
    IN WORD  argc,
    IN LPSTR argv[]
    );

VOID
TpDiffFreeFiles(
    VOID
    );


DWORD
TpDiffInitLogFileList(
    IN LPSTR LogFileList
    );

VOID
TpDiffFreeLogFileList(
    VOID
    );

DWORD
TpDiffLoadNextLogFilePair(
    VOID
    );

DWORD
TpDiffOpenLogFiles(
    VOID
    );

VOID
TpDiffFreeLogFiles(
    VOID
    );

DWORD
TpDiffInitDiffFile(
    IN LPSTR DiffFile
    );

DWORD
TpDiffWriteToDiffFile(
    IN LPSTR Buffer
    );

DWORD
TpDiffWriteErrorToDiffFile(
    IN LPSTR Buffer
    );


VOID
TpDiffFreeDiffFile(
    VOID
    );

DWORD
TpDiffCompareLogFiles(
    VOID
    );

DWORD
TpDiffGetNextLine(
    IN  PBYTE  Buffer,
    IN  PDWORD BufOffSet,
    IN  DWORD  BufSize,
    IN  PDWORD LineNumber,
    OUT PBYTE  Line
    );

DWORD
TpDiffGetResults(
    IN PBYTE Buffer
    );

BOOL
TpDiffMayValuesDiffer(
    IN PBYTE Buffer
    );

BOOL
TpDiffMustLastTwoValuesEqual(
    IN PBYTE Buffer
    );

VOID
TpDiffUsage (
    VOID
    );

//
// TpDiff Global variables
//

BYTE   LogFileListName[256];
BYTE   LogFileName[256];
BYTE   KnownLogFileName[256];
BYTE   DiffFileName[256];

HANDLE DiffFileHandle = NULL;

PBYTE  LogFileListBuffer = NULL;
DWORD  LogFileListSize = 0;
DWORD  LogFileListOffset = 0;

PBYTE  LogFileBuffer = NULL;
DWORD  LogFileSize = 0;
DWORD  LogFileOffset;
DWORD  LogFileLineNumber;

PBYTE  KnownLogFileBuffer = NULL;
DWORD  KnownLogFileSize = 0;
DWORD  KnownLogFileOffset;
DWORD  KnownLogFileLineNumber;

PBYTE  DiffBuffer = NULL;
BOOL   LoggingToScreen = FALSE;

BOOL   MoreFilesToDiff = FALSE;

BYTE   LogFileLine[256];
BYTE   KnownLogFileLine[265];

DWORD  ResultsValue = 0;
DWORD  LastResultsValue = 0;

DWORD  LogFileDifferences = 0;
DWORD  TotalDifferences = 0;

//
// the main routine for TpDiff.
//


VOID _cdecl
main(
    IN WORD  argc,
    IN LPSTR argv[]
    )

/*++

Routine Description:


Arguments:

    IN WORD argc - Supplies the number of parameters
    IN LPSTR argv[] - Supplies the parameter list.

Return Value:

    None.

--*/

{
    DWORD Status;

    //
    // Read the command line, and open the requested files and set
    // them up to be processed.
    //

    Status = TpDiffInitializeFiles( argc,argv );

    if ( Status != NO_ERROR ) {
        ExitProcess( Status );
    }

    //
    // We have at least two files to compare so ...
    //

    do {

        //
        // Compare the LOG_FILE and KNOWN_LOG_FILE.
        //

        Status = TpDiffCompareLogFiles();

        if ( Status != NO_ERROR ) {
            break;
        }

        //
        // Then see if there are any more files to compare.
        //

        Status = TpDiffLoadNextLogFilePair();

        if ( Status != NO_ERROR ) {
            break;
        }

        //
        // and if so open them, and set up their respective buffers
        // to be compared.
        //

        Status = TpDiffOpenLogFiles();

        if (( Status == ERROR_FILE_NOT_FOUND ) &&
            ( MoreFilesToDiff == TRUE )) {

            //
            // We failed to open one of the logs files due to the fact
            // that it did not exist, AND we are reading from a list of
            // log/known log file pairs. We should get the next pair
            // and try to open them.
            //

            do {

                Status = TpDiffLoadNextLogFilePair();

                if ( Status != NO_ERROR ) {
                    break;
                }

                Status = TpDiffOpenLogFiles();

                if (( Status != NO_ERROR ) &&
                    ( Status != ERROR_FILE_NOT_FOUND )) {
                    break;
                }

            } while (( MoreFilesToDiff == TRUE ) &&
                     ( Status == ERROR_FILE_NOT_FOUND ));

            if ( Status != NO_ERROR ) {
                break;
            }
        } else if ( Status != NO_ERROR ) {
            break;
        }

    } while ( MoreFilesToDiff == TRUE );

    printf("\n\tTpDiff Pass Contained %d Total Differences.\n",TotalDifferences);

    if ( LoggingToScreen == FALSE ) {

        LPSTR TmpBuf = DiffBuffer;

        TmpBuf += (BYTE)sprintf(TmpBuf,"\nTpDiff: Contained %d Total Differences.\n",
            TotalDifferences);

        Status = TpDiffWriteToDiffFile( TmpBuf );

        if ( Status != NO_ERROR ) {
            printf("\n\tTpDiff: failed to write statistics to logfile, return %d\n",
                Status);
        }
    }

    //
    // Free all the files handles, and buffers previously allocated.
    //

    TpDiffFreeFiles();

    ExitProcess( (DWORD)NO_ERROR );
}


DWORD
TpDiffInitializeFiles(
    IN WORD  argc,
    IN LPSTR argv[]
    )

/*++

Routine Description:

    This routine parses the command line arguments, and opens the files
    that are passed in on the command line.

Arguments:

    IN WORD argc - Supplies the number of arguments passed in at startup.

    IN LPTSTR argv[] - Supplies the argument vector containing the arguments
                       passed in from the command line.

Return Value:

    DWORD - NO_ERROR if all the arguments are valid and the files are opened
            successfully.  If the files fail to open, then the error returned
            from the open routines are returned. ERROR_INALID_PARAMETER
            otherwise.

--*/

{
    DWORD Status;

    //
    // See if we have enough arguments on the commmand line.
    //

    if ( argc == 1 ) {
        TpDiffUsage();
        return ERROR_INVALID_PARAMETER;
    } else if (( argc != 4 ) && ( argc != 3 )) {
        printf("\n\tTpDiff: ERROR - Invalid number of arguments\n");
        TpDiffUsage();
        return ERROR_INVALID_PARAMETER;
    }

    //
    // Is the first argument a LOG_FILE_NAME or the LOG_FILES_LIST switch ?
    //

    if (!strcmp(argv[1],"-f")) {

        //
        // It is the LOG_FILES_LIST switch. We need four arguments for
        // this case, so make sure we have them.

        if ( argc != 4 ) {
            printf("\n\tTpDiff: ERROR - Invalid number of arguments\n");
            TpDiffUsage();
            return ERROR_INVALID_PARAMETER;
        }

        //
        // It is the LOG_FILES_LIST switch.  First set the flag indicating
        // that there are possible more then one pair of files to diff.
        //

        MoreFilesToDiff = TRUE;

        //
        // We have a file containing the logfile/knownlogfile name pairs.
        // Set up the name to be opened, and then open it now and read
        // the contents.
        //

        Status = TpDiffInitLogFileList( argv[2] );

        if ( Status != NO_ERROR ) {
            return Status;
        }

        //
        // Now read the first file pair from the list.  The names
        // will be stored in the global vars LogFileName and
        // KnownLogFileName.
        //

        Status = TpDiffLoadNextLogFilePair();

        if ( Status != NO_ERROR ) {
            return Status;
        }
    } else {

        //
        // We have been passed two files to diff. set up the names to
        // be opened.
        //

        strcpy( LogFileName,argv[1] );
        strcpy( KnownLogFileName,argv[2] );
    }

    //
    // Now open the first two log files to diff.  The file handles will be
    // stored in the global vars LogFileNameHandle and KnownLogFileNameHandle.
    //

    Status = TpDiffOpenLogFiles();

    if (( Status == ERROR_FILE_NOT_FOUND ) &&
        ( MoreFilesToDiff == TRUE )) {

        //
        // We failed to open one of the logs files due to the fact
        // that it did not exist, AND we are reading from a list of
        // log/known log file pairs. We should get the next pair
        // and try to open them.
        //

        do {

            Status = TpDiffLoadNextLogFilePair();

            if ( Status != NO_ERROR ) {
                break;
            }

            Status = TpDiffOpenLogFiles();

            if (( Status != NO_ERROR ) &&
                ( Status != ERROR_FILE_NOT_FOUND )) {
                break;
            }

        } while (( MoreFilesToDiff == TRUE ) &&
                 ( Status == ERROR_FILE_NOT_FOUND ));

        if ( Status != NO_ERROR ) {
            return Status;
        }
    } else if ( Status != NO_ERROR ) {
        return Status;
    }

    //
    // Finally setup the results file name and open it.  This is the file
    // any differences between the two log files will be written to.
    //

    Status = TpDiffInitDiffFile( argv[3] );

    if ( Status != NO_ERROR ) {
        return Status;
    }

    return NO_ERROR;
}


VOID
TpDiffFreeFiles(
    VOID
    )

/*++

Routine Description:

    This routine closes all open file handles and frees any corresponding
    buffers.

Arguments:

    None.

Return Value:

    None.

--*/

{
    //
    // Free the LOG_FILE_LIST resources.
    //

    TpDiffFreeLogFileList();

    //
    // Free the LOG_FILE and KNOWN_LOG_FILE resources.
    //

    TpDiffFreeLogFiles();

    //
    // Free the DIFF_FILE resources.
    //

    TpDiffFreeDiffFile();
}


DWORD
TpDiffInitLogFileList(
    IN LPSTR LogFileList
    )

/*++

Routine Description:

    This routine opens and reads the LOG_FILE_LIST file into a newly
    allocated buffer.  The handle, buffer and filename are all attached
    to global LOG_FILE_LIST variables.

Arguments:

    IN LPSTR LogFileList - Supplies the name of the LOG_FILE_LIST file
                           to open.

Return Value:

    DWORD - If NO_ERROR the file was opened and read into the buffer.
            otherwise there was a failure that will cause the application
            to un-initialize and exit.

--*/

{
    DWORD Status;
    HANDLE LogFileListHandle = NULL;
    HANDLE LogFileListMapHandle = NULL;

    //
    // First Open the LOG_FILE_LIST file.
    //

    strcpy( LogFileListName,LogFileList );

    LogFileListHandle = CreateFile(
                            LogFileListName,
                            GENERIC_READ,
                            FILE_SHARE_READ,
                            NULL,
                            OPEN_EXISTING,
                            FILE_ATTRIBUTE_NORMAL,
                            NULL
                            );

    if ( LogFileListHandle == (HANDLE)-1 ) {
        Status = GetLastError();
        printf("\n\tTpDiff: Failed to open LOG_FILE_LIST \"%s\", returned %ld.\n",
            LogFileListName,Status);
        return Status;
    }

    //
    // then find its size.
    //

    LogFileListSize = GetFileSize( LogFileListHandle,NULL );

    if ( LogFileListSize == -1 ) {
        Status = GetLastError();
        printf("\n\tTpDiff: failed find LOG_FILE_LIST size, returned %ld.\n",Status);
        CloseHandle( LogFileListHandle );
        return Status;
    } else if ( LogFileListSize == 0 ) {
        printf("\n\tTpDiff: LOG_FILE_LIST is empty, nothing to compare.\n");
        CloseHandle( LogFileListHandle );
        return ERROR_FILE_NOT_FOUND;
    }

    //
    // and create a file mapping.
    //

    LogFileListMapHandle = CreateFileMapping(
                               LogFileListHandle,
                               NULL,
                               PAGE_READONLY,
                               0,
                               LogFileListSize,
                               NULL
                               );

    if ( LogFileListMapHandle == NULL ) {
        Status = GetLastError();
        printf("\n\tTpDiff: Unable to map LOG_FILE_LIST \"%s\", returned %d",
            LogFileListName,Status);
        CloseHandle( LogFileListHandle );
        return Status;
    }

    //
    // We're done with the file handle so close it now.
    //

    CloseHandle( LogFileListHandle );

    //
    // Now create a View of the mapped file.
    //

    LogFileListBuffer = MapViewOfFile(
                            LogFileListMapHandle,
                            FILE_MAP_READ,
                            0,
                            0,
                            LogFileListSize
                            );

    if ( LogFileListBuffer == NULL ) {
        Status = GetLastError();
        printf("\n\tTpDiff: Unable to map view of LOG_FILE_LIST \"%s\", returned %d",
            LogFileListName,Status);
        CloseHandle( LogFileListMapHandle );
        return Status;
    }

    //
    // We're done with the map handle so close it now.
    //

    CloseHandle( LogFileListMapHandle );

    return NO_ERROR;
}


VOID
TpDiffFreeLogFileList(
    VOID
    )
{
    //
    // Simply UnMap the log file list buffer and null it out.
    //

    if ( LogFileListBuffer != NULL ) {
        UnmapViewOfFile( LogFileListBuffer );
        LogFileListBuffer = NULL;
    }
}


DWORD
TpDiffLoadNextLogFilePair(
    VOID
    )

/*++

Routine Description:

    This routine reads the next two log file names from the log file list
    buffer and moves the log file list pointer past them.  The format of
    the log file list is pairs of LOG_FILE_NAME KNOWN_LOG_FILE_NAME with
    each pair residing on the same line in the file.

Arguments:

    None

Return Value:

    DWORD - NO_ERROR if the next two files are found, ERROR_INVALID_PARAMETER
            if the log file list is the wrong format.

--*/

{
    DWORD TmpOffset;
    DWORD Length;

    //
    // If we are not reading files from a loglistfile the MoreFilesToDiff
    // flag will be set to FALSE, so just return.
    //

    if ( MoreFilesToDiff == FALSE ) {
        return ERROR_NO_MORE_FILES;
    }

    //
    // Move the LOG_FILE_LIST pointer to the beginning of the next
    // file name in the list.
    //

    while ((((( LogFileListBuffer[LogFileListOffset] == ' ' )  ||
              ( LogFileListBuffer[LogFileListOffset] == '\t')) ||
              ( LogFileListBuffer[LogFileListOffset] == '\r')) ||
              ( LogFileListBuffer[LogFileListOffset] == '\n')) &&
              ( LogFileListOffset < LogFileListSize )) {

        LogFileListOffset++;
    }

    if ( LogFileListOffset == LogFileListSize ) {
        LogFileName[0] = '\0';
        KnownLogFileName[0] = '\0';
        return ERROR_NO_MORE_FILES;
    }

    //
    // then find the length of the next file name.
    //

    Length = 0;
    TmpOffset = LogFileListOffset;

    while ((((( LogFileListBuffer[TmpOffset] != ' ' )  &&
              ( LogFileListBuffer[TmpOffset] != '\t' )) &&
              ( LogFileListBuffer[TmpOffset] != '\r'))  &&
              ( LogFileListBuffer[TmpOffset] != '\n'))  &&
              ( TmpOffset < LogFileListSize )) {

        Length++;
        TmpOffset++;
    }

    //
    // copy it to the global var LogFileName, and null terminate it.
    //

    strncpy( LogFileName,&LogFileListBuffer[LogFileListOffset],Length );

    LogFileName[Length] = '\0';

    //
    // then move the LOG_FILE_LIST pointer past the LogFileName
    //

    LogFileListOffset = TmpOffset + 1;

    //
    // and search to the beginning of the next file name
    //

    while ((( LogFileListBuffer[LogFileListOffset] == ' '  ) ||
            ( LogFileListBuffer[LogFileListOffset] == '\t' )) &&
            ( LogFileListOffset < LogFileListSize )) {

        LogFileListOffset++;

        if (( LogFileListBuffer[LogFileListOffset] == '\n' ) ||
            ( LogFileListBuffer[LogFileListOffset] == '\r' )) {

            KnownLogFileName[0] = '\0';

            MoreFilesToDiff = FALSE;

            printf("\tTpDiff: ERROR - LOG_FILE_LIST must have filename pairs on\n");
            printf("\t        same line in file.\n");

            return ERROR_INVALID_PARAMETER;
        }
    }

    //
    // then find the length of the next file name.
    //

    Length = 0;
    TmpOffset = LogFileListOffset;

    while ((((( LogFileListBuffer[TmpOffset] != ' ' )   &&
              ( LogFileListBuffer[TmpOffset] != '\t' )) &&
              ( LogFileListBuffer[TmpOffset] != '\r'))  &&
              ( LogFileListBuffer[TmpOffset] != '\n'))  &&
              ( TmpOffset < LogFileListSize )) {

        Length++;
        TmpOffset++;
    }

    //
    // copy it to the global var KnownLogFileName, and null terminate it.
    //

    strncpy( KnownLogFileName,&LogFileListBuffer[LogFileListOffset],Length );

    KnownLogFileName[Length] = '\0';

    //
    // then move the LOG_FILE_LIST pointer past the KnownLogFileName
    //

    LogFileListOffset = TmpOffset + 1;

    return NO_ERROR;
}


DWORD
TpDiffOpenLogFiles(
    VOID
    )

/*++

Routine Description:

    This routine opens the file names stored in the global variables
    LogFileName and KnownLogFile name, creates a buffer for each and
    reads the file contents into the respective buffer.

Arguments:

    None

Return Value:

    DWORD - If NO_ERROR the files were opened and read into the buffers.
            otherwise there was a failure that will cause the application
            to un-initialize and exit.

--*/

{
    DWORD Status;
    HANDLE LogFileHandle = NULL;
    HANDLE LogFileMapHandle = NULL;
    HANDLE KnownLogFileHandle = NULL;
    HANDLE KnownLogFileMapHandle = NULL;

    //
    // First open the LOG_FILE file.
    //

    if (( LogFileName[0] == '\0' ) || ( KnownLogFileName[0] == '\0' )) {
        return ERROR_NO_MORE_FILES;
    }

    LogFileHandle = CreateFile(
                        LogFileName,
                        GENERIC_READ,
                        FILE_SHARE_READ,
                        NULL,
                        OPEN_EXISTING,
                        FILE_ATTRIBUTE_NORMAL,
                        NULL
                        );

    if ( LogFileHandle == (HANDLE)-1 ) {
        Status = GetLastError();

        if ( Status == ERROR_FILE_NOT_FOUND ) {
            TpDiffWriteErrorToDiffFile( "Tpdiff: WARNING - Failed to open LOG_FILE \"" );
            TpDiffWriteErrorToDiffFile( LogFileName );
            TpDiffWriteErrorToDiffFile( "\".\n");
        }

        printf("\n\tTpDiff: Failed to open LOG_FILE \"%s\", returned %ld.\n",
            LogFileName,Status);
        return Status;
    }

    //
    // then find its size.
    //

    LogFileSize = GetFileSize( LogFileHandle,NULL );

    if ( LogFileSize == -1 ) {
        Status = GetLastError();
        printf("\n\tTpDiff: failed find LOG_FILE size - returned %ld.\n",Status);
        CloseHandle( LogFileHandle );
        return Status;
    } else if ( LogFileSize == 0 ) {
        printf("\n\tTpDiff: LOG_FILE \"%s\" is empty, nothing to compare.\n",LogFileName);
        CloseHandle( LogFileHandle );
        return ERROR_NO_MORE_FILES;

    }

    //
    // and create a file mapping.
    //

    LogFileMapHandle = CreateFileMapping(
                           LogFileHandle,
                           NULL,
                           PAGE_READONLY,
                           0,
                           LogFileSize,
                           NULL
                           );

    if ( LogFileMapHandle == NULL ) {
        Status = GetLastError();
        printf("\n\tTpDiff: Unable to map LOG_FILE \"%s\", returned %d",
            LogFileName,Status);
        CloseHandle( LogFileHandle );
        return Status;
    }

    //
    // We're done with the file handle so close it now.
    //

    CloseHandle( LogFileHandle );

    //
    // Now create a View of the mapped file.
    //

    LogFileBuffer = MapViewOfFile(
                        LogFileMapHandle,
                        FILE_MAP_READ,
                        0,
                        0,
                        LogFileSize
                        );

    if ( LogFileBuffer == NULL ) {
        Status = GetLastError();
        printf("\n\tTpDiff: Unable to map view of LOG_FILE \"%s\", returned %d",
            LogFileName,Status);
        CloseHandle( LogFileMapHandle );
        return Status;
    }

    //
    // We're done with the map handle so close it now.
    //

    CloseHandle( LogFileMapHandle );

    //
    // Now reset the offset into the LogFilebuffer and the line number
    // counter to zero.
    //

    LogFileOffset = 0;
    LogFileLineNumber = 1;

    //
    // Then open the KNOWN_LOG_FILE file.
    //

    KnownLogFileHandle = CreateFile(
                             KnownLogFileName,
                             GENERIC_READ,
                             FILE_SHARE_READ,
                             NULL,
                             OPEN_EXISTING,
                             FILE_ATTRIBUTE_NORMAL,
                             NULL
                             );

    if ( KnownLogFileHandle == (HANDLE)-1 ) {
        Status = GetLastError();

        if ( Status == ERROR_FILE_NOT_FOUND ) {
            TpDiffWriteErrorToDiffFile("TpDiff: WARNING Failed to open KNOWN_LOG_FILE \"");
            TpDiffWriteErrorToDiffFile(KnownLogFileName);
            TpDiffWriteErrorToDiffFile("\".\n");
        }

        printf("\n\tTpDiff: Failed to open KNOWN_LOG_FILE \"%s\", returned %ld.\n",
            KnownLogFileName,Status);
        return Status;
    }

    //
    // then find its size.
    //

    KnownLogFileSize = GetFileSize( KnownLogFileHandle,NULL );

    if ( KnownLogFileSize == -1 ) {
        Status = GetLastError();
        printf("\n\tTpDiff: failed find KNOWN_LOG_FILE size - returned %ld.\n",Status);
        CloseHandle( KnownLogFileHandle );
        return Status;
    } else if ( KnownLogFileSize == 0 ) {
        printf("\n\tTpDiff: KNOWN_LOG_FILE \"%s\" is empty, nothing to compare.\n",KnownLogFileName);
        CloseHandle( KnownLogFileHandle );
        return ERROR_NO_MORE_FILES;
    }

    //
    // and create a file mapping.
    //

    KnownLogFileMapHandle = CreateFileMapping(
                                KnownLogFileHandle,
                                NULL,
                                PAGE_READONLY,
                                0,
                                KnownLogFileSize,
                                NULL
                                );

    if ( KnownLogFileMapHandle == NULL ) {
        Status = GetLastError();
        printf("\n\tTpDiff: Unable to map KNOWN_LOG_FILE \"%s\", returned %d",
            KnownLogFileName,Status);
        CloseHandle( KnownLogFileHandle );
        return Status;
    }

    //
    // We're done with the file handle so close it now.
    //

    CloseHandle( KnownLogFileHandle );

    //
    // Now create a View of the mapped file.
    //

    KnownLogFileBuffer = MapViewOfFile(
                             KnownLogFileMapHandle,
                             FILE_MAP_READ,
                             0,
                             0,
                             KnownLogFileSize
                             );

    if ( KnownLogFileBuffer == NULL ) {
        Status = GetLastError();
        printf("\n\tTpDiff: Unable to map view of KNOWN_LOG_FILE \"%s\", returned %d",
            KnownLogFileName,Status);
        CloseHandle( KnownLogFileMapHandle );
        return Status;
    }

    //
    // We're done with the map handle so close it now.
    //

    CloseHandle( KnownLogFileMapHandle );

    //
    // Now reset the offset into the KnownLogFilebuffer to zero.
    // and return.
    //

    KnownLogFileOffset = 0;
    KnownLogFileLineNumber = 1;

    return NO_ERROR;
}


VOID
TpDiffFreeLogFiles(
    VOID
    )

/*++

Routine Description:

    This routine frees the LOG_FILE and KNOWN_LOG_FILE buffers and
    nulls their respective pointers.

Arguments:

    None.

Return Value:

    None.

--*/

{
    if ( LogFileBuffer != NULL ) {
        UnmapViewOfFile( LogFileBuffer );
        LogFileBuffer = NULL;
    }

    if ( KnownLogFileBuffer != NULL ) {
        UnmapViewOfFile( KnownLogFileBuffer );
        KnownLogFileBuffer = NULL;
    }
}


DWORD
TpDiffInitDiffFile(
    IN LPSTR DiffFile
    )

/*++

Routine Description:

    This routine opens the DIFF_FILE.  The handle and file name are
    attached to global DIFF_FILE variables.  A buffer is also allocated
    that is used to any output to the DIFF_FILE.

Arguments:

    IN LPSTR DiffFile - Supplies the name of the DIFF_FILE to open.

Return Value:

    DWORD - The Status of the OPEN.

--*/

{
    DWORD Status;

    //
    // If a Diff file name was passed in on the command line,
    // Open the DIFF_FILE file.
    //

    if ( DiffFile != NULL ) {

        strcpy( DiffFileName,DiffFile );

        DiffFileHandle = CreateFile(
                              DiffFileName,
                              GENERIC_WRITE,
                              FILE_SHARE_READ,
                              NULL,
                              CREATE_ALWAYS,
                              FILE_ATTRIBUTE_NORMAL,
                              NULL
                              );

        if ( DiffFileHandle == (HANDLE)-1 ) {
            Status = GetLastError();
            printf("\n\tTpDiff: Failed to open DIFFS_FILE \"%s\", returned %ld.\n",
                DiffFileName,Status);
            return Status;
        }

    } else { // We will just write the DIFFS to the console.

        DiffFileHandle = GetStdHandle(STD_OUTPUT_HANDLE);
        LoggingToScreen = TRUE;
    }

    DiffBuffer = GlobalAlloc(
                     GMEM_FIXED | GMEM_ZEROINIT,
                     0x1000
                     );

    if ( DiffBuffer == NULL ) {
        Status = GetLastError();
        printf("\n\tTpDiff: failed to alloc DIFF_FILE buffer, returned %ld.\n",
            Status);

        if ( strlen( DiffFile ) != 0 ) { // close the diff file
            CloseHandle( DiffFileHandle );
        }

        DiffFileHandle = NULL;
        return Status;
    }

    return NO_ERROR;
}


DWORD
TpDiffWriteToDiffFile(
    IN LPSTR Buffer
    )

/*++

Routine Description:

    This routine simply writes a string to the DIFF_FILE.

Arguments:

    IN LPSTR Buffer - Supplies the string to write to the DIFF_FILE.

Return Value:

    DWORD - The Status of the call to WriteFile.

--*/


{
    DWORD Status;
    DWORD BytesWritten;

    if ( !WriteFile(
              DiffFileHandle,
              DiffBuffer,
              (Buffer-DiffBuffer),
              &BytesWritten,
              NULL
              )) {

        Status = GetLastError();
        printf("\n\tTpDiff: Write to DIFFS_FILE failed, returned %ld\n",Status);
        return Status;
    }

    return NO_ERROR;
}


DWORD
TpDiffWriteErrorToDiffFile(
    IN LPSTR Buffer
    )

/*++

Routine Description:

    This routine simply writes a string to the DIFF_FILE.

Arguments:

    IN LPSTR Buffer - Supplies the string to write to the DIFF_FILE.

Return Value:

    DWORD - The Status of the call to WriteFile.

--*/


{
    DWORD Status;
    DWORD BytesWritten;
    DWORD BufLength = 0;

    BufLength = strlen( Buffer );

    if ( !WriteFile(
              DiffFileHandle,
              Buffer,
              BufLength,
              &BytesWritten,
              NULL
              )) {

        Status = GetLastError();
        printf("\n\tTpDiff: Write to DIFFS_FILE failed, returned %ld\n",Status);
        return Status;
    }

    return NO_ERROR;
}


VOID
TpDiffFreeDiffFile(
    VOID
    )
{
    //
    // Close the DIFF_FILE, deallocate the diff buffer, and null out
    // their pointers.
    //

    if ( DiffFileHandle != NULL ) {

        if ( strlen( DiffFileName ) != 0 ) {
            CloseHandle( DiffFileHandle );
        }

        DiffFileHandle = NULL;
    }

    if ( DiffBuffer != NULL ) {
        GlobalFree( DiffBuffer );
        DiffBuffer = NULL;
    }
}


DWORD
TpDiffCompareLogFiles(
    VOID
    )

/*++

Routine Description:

    This is the main compare routine of the TpDiff utility.  It compares the
    log file and known log file line by line for diffences.

Arguments:

    None.

Return Value:

    None.

--*/

{
    DWORD Status;
    DWORD Length;
    DWORD KnownLength;
    DWORD CmpLength;
    LPSTR TmpBuf = DiffBuffer;

    printf("\n\tTpDiff: comparing %s and %s ...\n",
                                    LogFileName,KnownLogFileName);
    do {

        //
        // Get the next line of the Log File.
        //

        Length = TpDiffGetNextLine(
                     LogFileBuffer,
                     &LogFileOffset,
                     LogFileSize,
                     (PDWORD)&LogFileLineNumber,
                     (PBYTE)&LogFileLine
                     );

        if ( Length != 0 ) {

            //
            // Get the value of the Statitics results for that line,
            // first storing away the last lines value.
            //

            LastResultsValue = ResultsValue;

            ResultsValue = TpDiffGetResults( LogFileLine );
        }

        //
        // And the next line of the Known Log File.
        //

        KnownLength = TpDiffGetNextLine(
                          KnownLogFileBuffer,
                          &KnownLogFileOffset,
                          KnownLogFileSize,
                          (PDWORD)&KnownLogFileLineNumber,
                          (PBYTE)&KnownLogFileLine
                          );

        //
        // Compare them with respect to the length of the longer of the
        // two lines.
        //

        if ( Length >= KnownLength ) {
            CmpLength = Length;
        } else {
            CmpLength = KnownLength;
        }

        if (( CmpLength != 0 ) &&
            ( memcmp( LogFileLine,KnownLogFileLine,CmpLength ) != 0 )) {

            if (( TpDiffMayValuesDiffer( LogFileLine )) ||
                ( TpDiffMayValuesDiffer( KnownLogFileLine ))) {

                //
                // The line contains a MAY_DIFFER flag, so ignore the
                // differences.
                //

            } else if (( TpDiffMustLastTwoValuesEqual( LogFileLine )) &&
                       ( LastResultsValue == ResultsValue )) {
                } else {

                LogFileDifferences++;

                //
                // If lines did not match, and the line does not contain the
                // MAY_DIFFER string, or It contained EQUAL_LAST, but the
                // stats value weren't equal, then write the info to the
                // diff file.
                //

                TmpBuf += (BYTE)sprintf(TmpBuf,"Logfile: %s - Line Number: %ld\n",
                                                LogFileName,LogFileLineNumber);
                TmpBuf += (BYTE)sprintf(TmpBuf,"Found:    %s\n",LogFileLine);
                TmpBuf += (BYTE)sprintf(TmpBuf,"Expected: %s\n\n",KnownLogFileLine);

                if (( TpDiffMustLastTwoValuesEqual( LogFileLine )) &&
                    ( LastResultsValue != ResultsValue )) {

                    TmpBuf += (BYTE)sprintf(TmpBuf,"TpDiff: ERROR - The last two test values (%ld) and (%ld) did not equal.\n\n",
                        LastResultsValue,ResultsValue);
                }

                Status = TpDiffWriteToDiffFile( TmpBuf );

                if ( Status != NO_ERROR ) {
                    printf("\n\tTpDiff: failed to write difference to logfile, return %d\n",
                        Status);
                    return Status;
                }

                //
                // and then reset the TmpBuf for the next go round.
                //

                TmpBuf = DiffBuffer;
            }
        }

    } while (( Length != 0 ) || ( KnownLength != 0 ));

    //
    // We have finished this log file, print the number of differences
    // to the log, and to the screen, update the total errors counter,
    // and reset the script error counter.
    //

    printf("\n\tLogFile %s Contained %d Differences.\n",
        LogFileName,LogFileDifferences);

    if ( LoggingToScreen == FALSE ) {

        TmpBuf += (BYTE)sprintf(TmpBuf,"\nLogFile %s Contained %d Differences.\n",
            LogFileName,LogFileDifferences);

        Status = TpDiffWriteToDiffFile( TmpBuf );

        if ( Status != NO_ERROR ) {
            printf("\n\tTpDiff: failed to write statistics to logfile, return %d\n",
                Status);
            return Status;
        }
    }

    TotalDifferences += LogFileDifferences;
    LogFileDifferences = 0;

    return NO_ERROR;
}


DWORD
TpDiffGetNextLine(
    IN  PBYTE  Buffer,
    IN  PDWORD BufOffset,
    IN  DWORD  BufSize,
    IN  PDWORD LineNumber,
    OUT PBYTE  Line
    )

/*++

Routine Description:

    This routine take a file buffer and writes the next line of the
    file into a line buffer.

Arguments:

    IN PBYTE FileBuffer - Supplies the buffer to read the next line from.
    IN PDWORD *BufOffset - Supplies the current offset in to the file buffer.
    IN DWORD BufSize - Supplies the size of the file buffer.
    OUT PBYTE FileLine - Returns the next line of the buffer.

Return Value:

    DWORD - The length of the line written into the buffer. Zero if the
            file is empty.

--*/

{
    DWORD Length = 0;
    DWORD i;
    DWORD Offset = (DWORD)*BufOffset;
    PBYTE TmpLine;

    TmpLine = Line;

    //
    // Ignore any empty lines, and the last lines carriage
    // returns/line feed pair.
    //

    while (((( Buffer[Offset] == '\n' )  ||
             ( Buffer[Offset] == '\r' )) ||
             ( Buffer[Offset] == 0x1a )) && // my editor quirk
             ( Offset < BufSize )) {

        if ( Buffer[Offset] ==  '\n' ) {
            (*LineNumber)++;
        }

        Offset++;

        if ( Offset >= BufSize ) {

            //
            // We have run off the end of this log file.
            // Null terminate the Line buffer.
            //

            Line[0] = '\0';

            //
            // Update the Buffer Offset with the new offset value.
            //

            *BufOffset = (DWORD)Offset;

            //
            // and return a length of zero for the Line buffer.
            //

            return Length;
        }
    }

    //
    // while we are on the same line, copy the characters to the
    // Line buffer.
    //

    while ((((( Buffer[Offset] != EOF )   &&
              ( Buffer[Offset] != '\n' )) &&
              ( Buffer[Offset] != '\r' )) &&
              ( Buffer[Offset] != 0x1a )) && // my editor quirk
              ( Offset <= BufSize )) {

        *Line++ = Buffer[Offset++];
        Length++;
    }

    //
    // Now Null terminate the Line buffer, and then null out any spaces,
    // tabs or carriage returns and line feeds that may exist at the
    // end of the string.
    //

    *Line = '\0';
    i = Length;

    while ( --i > 0 ) {

        if (( TmpLine[i] == 0x20 ) || // Space
            ( TmpLine[i] == 0x09 )) { // Tab

            TmpLine[i] = '\0';
            Length--;
        } else {
            break;
        }
    }

    //
    // Update the Buffer Offset with the new offset value.
    //

    *BufOffset = (DWORD)Offset;

    //
    // and return the length of the Line buffer.
    //

    return Length;
}


DWORD
TpDiffGetResults(
    IN PBYTE Buffer
    )

/*++

Routine Description:

    This routine finds the string result value in the buffer, converts
    it to an integer, and returns the integer value.

Arguments:

    IN PBYTE Buffer - Supplies a null terminated buffer containing
                      the possible string value.

Return Value:

    DWORD - the integer result value found in the string. -1 otherwise.

--*/

{
    DWORD Results = 0xFFFFFFFF;
    LPSTR Char = (LPSTR)Buffer;
    LPSTR NextChar = (LPSTR)Buffer; // Anything that isn't NULL.

    if ( Buffer == NULL ) {
        return Results;
    }

    NextChar = strpbrk( Char,"=" );

    if ( NextChar != NULL ) {
        *NextChar++;
    } else {
        return Results;
    }

    while (( *NextChar == ' ' ) || ( *NextChar == '\t' )) {
        *NextChar++;
    }

    Results = atol( NextChar ) ;

    return Results;
}


BOOL
TpDiffMayValuesDiffer(
    IN PBYTE Buffer
    )

/*++

Routine Description:

Arguments:

    IN PBYTE Buffer - Supplies a null terminated buffer containing the
                      possible text string "EQUAL_LAST" value.

Return Value:

    BOOL - TRUE if "MAY_DIFFER" exists in the string, FALSE otherwise.

--*/

{
    LPSTR String;

    String = strstr( Buffer,"MAY_DIFFER" );

    if ( String == NULL ) {
        return FALSE;
    }

    return TRUE;
}



BOOL
TpDiffMustLastTwoValuesEqual(
    IN PBYTE Buffer
    )

/*++

Routine Description:

Arguments:

    IN PBYTE Buffer - Supplies a null terminated buffer containing the
                      possible text string "EQUAL_LAST" value.

Return Value:

    BOOL - TRUE if "EQUAL_LAST" exists in the string, FALSE otherwise.

--*/

{
    LPSTR String;

    String = strstr( Buffer,"EQUAL_LAST" );

    if ( String == NULL ) {
        return FALSE;
    }

    return TRUE;
}


VOID
TpDiffUsage (
    VOID
    )

/*++

Routine Description:

    This routine prints out the TpDiff Usage statement.

Arguments:

    None.

Return Value:

    None.

--*/

{
    printf("\n\tUSAGE: TPDIFF [LOG_FILE] [KNOWN_LOG_FILE] [DIFFS_FILE]\n\n");

    printf("\tWhere:\n\n");

    printf("\tLOG_FILE       - is the log file that is to be verified\n");
    printf("\t                 for correctness.\n");

    printf("\tKNOWN_LOG_FILE - is the known good log file that will be\n");
    printf("\t                 used to verify the log file.\n");

    printf("\tDIFFS_FILE     - is the file the differences, if any exist,\n");
    printf("\t                 between the log files and the known good log\n");
    printf("\t                 files will be written to.  If no file name is\n");
    printf("\t                 given the differences will be printed to the\n");
    printf("\t                 console.\n");

    printf("\t\t- OR -\n\n");

    printf("\tTPDIFF -F [LOG_FILE_LIST] [DIFFS_FILE]\n\n");

    printf("\tWhere:\n\n");

    printf("\tLOG_FILE_LIST - is a file containing pairs of log file\n");
    printf("\t                names and known good log file names.  The\n");
    printf("\t                pairs of file names must be on the same line\n");
    printf("\t                in the file\n");

    printf("\tDIFFS_FILE    - is the file the differences, if any exist,\n");
    printf("\t                between the log files and the known good log\n");
    printf("\t                files will be written to.\n");
}