Home » Recent acquisitions » Acorn ADFS disks » adfs_ArchimedesWorld_199206b.adf » June92 » !AWJune92/Goodies/AllAtC/work/c/words

!AWJune92/Goodies/AllAtC/work/c/words

This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.

Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.

Tape/disk: Home » Recent acquisitions » Acorn ADFS disks » adfs_ArchimedesWorld_199206b.adf » June92
Filename: !AWJune92/Goodies/AllAtC/work/c/words
Read OK:
File size: 0FFE bytes
Load address: 0000
Exec address: 0000
Duplicates

There is 1 duplicate copy of this file in the archive:

File contents
/*  Program: !Words                       */
/*  Archimedes World, January 1992.       */

/*  Define local constants. */

#define MAXPATH 128

#define FALSE     0
#define TRUE !FALSE

/*  Include files required. */

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

/*  Define local variables. */

static char InFileName[MAXPATH];
static char OutFileName[MAXPATH];

static int  RepeatCount   = FALSE;
static int  UpperCase     = FALSE;
static int  LowerCase     = FALSE;
static int  CaseSensitive = TRUE;
static int  MinWordSize   = 2;


/*  Define local functions. */

static void WriteFile( word list )
{
    FILE *out = stdout;

    if ( *OutFileName )  out = fopen( OutFileName, "w" );

    if ( out )
    {
        ListWords( out, list, RepeatCount );
        if ( out != stdout )  fclose( out );
    }
    else
        printf( "Unable to open output file '%s'", OutFileName );
}


static void ReadFile( word *list )
{
    int    len;
    string buffer;
    FILE  *in = fopen( InFileName, "r" );

    if ( in )
    {
        while ( len = GetWord(buffer,STRLEN,in), len )
        {
            if ( len >= MinWordSize )
            {
                if ( LowerCase ) ToLowerCase( buffer );
                if ( UpperCase ) ToUpperCase( buffer );

                StoreWord( buffer, list );
            }
        }

        fclose( in );
    }
    else
        printf( "Unable to open input file '%s'", InFileName );
}


static int SetInputFile( char *argv[] )
{
    strncpy( InFileName, argv[0], MAXPATH );

    return 1;
}


static int SetOutputFile( char *argv[], int left )
{
    if ( left > 1 )
        strncpy( OutFileName, argv[1], MAXPATH );
    else
        printf( "Missing filename after '%s' flag.", argv[0] );

    return 2;
}


static int SetCaseSensitivity( char *argv[] )
{
    CaseSensitive = TRUE;

    if ( CaseSensitive )
    {
        UpperCase = FALSE;
        LowerCase = FALSE;
    }

    return 1;
}


static int SetUpperCaseConversion( char *argv[] )
{
    UpperCase     = TRUE;
    CaseSensitive = FALSE;

    return 1;
}


static int SetLowerCaseConversion( char *argv[] )
{
    LowerCase     = TRUE;
    CaseSensitive = FALSE;

    return 1;
}


static int SetRepeatCount( char *argv[] )
{
    RepeatCount = TRUE;
    return 1;
}


static int SetWordSize( char *argv[], int left )
{
    if ( left > 1 )
        MinWordSize = (int) strtol( argv[1], NULL, 10 );
    else
        printf( "Missing value after '%s' flag.\n", argv[0] );

    return 2;
}


static int HandleCommandLine( int argc, char *argv[] )
{
    int count = 1;

    if ( argc > 1 )
    {
        count += SetInputFile( &argv[count] );

        while ( count < argc )
        {
            int left = argc - count;

            switch ( argv[count][0] )
            {
                case 'C' :
                case 'c' : count += SetCaseSensitivity( &argv[count] );
                           break;

                case 'O' :
                case 'o' : count += SetOutputFile( &argv[count], left );
                           break;

                case 'S' :
                case 's' : count += SetWordSize( &argv[count], left );
                           break;

                case 'R' :
                case 'r' : count += SetRepeatCount( &argv[count] );
                           break;

                case 'U' :
                case 'u' : count += SetUpperCaseConversion( &argv[count] );
                           break;

                case 'L' :
                case 'l' : count += SetLowerCaseConversion( &argv[count] );
                           break;

                default  : printf( "Unknown command line flag '%s'\n", argv[count] );
                           count++;
            }
        }

        return TRUE;
    }
    else
    {
        puts( "No input file name supplied." );
        return FALSE;
    }
}


int main( int argc, char *argv[] )
{
    word list = NULL;
 
    if ( HandleCommandLine( argc, argv ) ) 
    {
        ReadFile( &list );
        WriteFile( list );
        return 0;
    }
    else
        return 1;
}

00000000  2f 2a 20 20 50 72 6f 67  72 61 6d 3a 20 21 57 6f  |/*  Program: !Wo|
00000010  72 64 73 20 20 20 20 20  20 20 20 20 20 20 20 20  |rds             |
00000020  20 20 20 20 20 20 20 20  20 20 2a 2f 0a 2f 2a 20  |          */./* |
00000030  20 41 72 63 68 69 6d 65  64 65 73 20 57 6f 72 6c  | Archimedes Worl|
00000040  64 2c 20 4a 61 6e 75 61  72 79 20 31 39 39 32 2e  |d, January 1992.|
00000050  20 20 20 20 20 20 20 2a  2f 0a 0a 2f 2a 20 20 44  |       */../*  D|
00000060  65 66 69 6e 65 20 6c 6f  63 61 6c 20 63 6f 6e 73  |efine local cons|
00000070  74 61 6e 74 73 2e 20 2a  2f 0a 0a 23 64 65 66 69  |tants. */..#defi|
00000080  6e 65 20 4d 41 58 50 41  54 48 20 31 32 38 0a 0a  |ne MAXPATH 128..|
00000090  23 64 65 66 69 6e 65 20  46 41 4c 53 45 20 20 20  |#define FALSE   |
000000a0  20 20 30 0a 23 64 65 66  69 6e 65 20 54 52 55 45  |  0.#define TRUE|
000000b0  20 21 46 41 4c 53 45 0a  0a 2f 2a 20 20 49 6e 63  | !FALSE../*  Inc|
000000c0  6c 75 64 65 20 66 69 6c  65 73 20 72 65 71 75 69  |lude files requi|
000000d0  72 65 64 2e 20 2a 2f 0a  0a 23 69 6e 63 6c 75 64  |red. */..#includ|
000000e0  65 20 22 6c 65 78 69 63  61 6c 2e 68 22 0a 23 69  |e "lexical.h".#i|
000000f0  6e 63 6c 75 64 65 20 3c  73 74 64 69 6f 2e 68 3e  |nclude <stdio.h>|
00000100  0a 23 69 6e 63 6c 75 64  65 20 3c 73 74 64 6c 69  |.#include <stdli|
00000110  62 2e 68 3e 0a 23 69 6e  63 6c 75 64 65 20 3c 73  |b.h>.#include <s|
00000120  74 72 69 6e 67 2e 68 3e  0a 0a 2f 2a 20 20 44 65  |tring.h>../*  De|
00000130  66 69 6e 65 20 6c 6f 63  61 6c 20 76 61 72 69 61  |fine local varia|
00000140  62 6c 65 73 2e 20 2a 2f  0a 0a 73 74 61 74 69 63  |bles. */..static|
00000150  20 63 68 61 72 20 49 6e  46 69 6c 65 4e 61 6d 65  | char InFileName|
00000160  5b 4d 41 58 50 41 54 48  5d 3b 0a 73 74 61 74 69  |[MAXPATH];.stati|
00000170  63 20 63 68 61 72 20 4f  75 74 46 69 6c 65 4e 61  |c char OutFileNa|
00000180  6d 65 5b 4d 41 58 50 41  54 48 5d 3b 0a 0a 73 74  |me[MAXPATH];..st|
00000190  61 74 69 63 20 69 6e 74  20 20 52 65 70 65 61 74  |atic int  Repeat|
000001a0  43 6f 75 6e 74 20 20 20  3d 20 46 41 4c 53 45 3b  |Count   = FALSE;|
000001b0  0a 73 74 61 74 69 63 20  69 6e 74 20 20 55 70 70  |.static int  Upp|
000001c0  65 72 43 61 73 65 20 20  20 20 20 3d 20 46 41 4c  |erCase     = FAL|
000001d0  53 45 3b 0a 73 74 61 74  69 63 20 69 6e 74 20 20  |SE;.static int  |
000001e0  4c 6f 77 65 72 43 61 73  65 20 20 20 20 20 3d 20  |LowerCase     = |
000001f0  46 41 4c 53 45 3b 0a 73  74 61 74 69 63 20 69 6e  |FALSE;.static in|
00000200  74 20 20 43 61 73 65 53  65 6e 73 69 74 69 76 65  |t  CaseSensitive|
00000210  20 3d 20 54 52 55 45 3b  0a 73 74 61 74 69 63 20  | = TRUE;.static |
00000220  69 6e 74 20 20 4d 69 6e  57 6f 72 64 53 69 7a 65  |int  MinWordSize|
00000230  20 20 20 3d 20 32 3b 0a  0a 0a 2f 2a 20 20 44 65  |   = 2;.../*  De|
00000240  66 69 6e 65 20 6c 6f 63  61 6c 20 66 75 6e 63 74  |fine local funct|
00000250  69 6f 6e 73 2e 20 2a 2f  0a 0a 73 74 61 74 69 63  |ions. */..static|
00000260  20 76 6f 69 64 20 57 72  69 74 65 46 69 6c 65 28  | void WriteFile(|
00000270  20 77 6f 72 64 20 6c 69  73 74 20 29 0a 7b 0a 20  | word list ).{. |
00000280  20 20 20 46 49 4c 45 20  2a 6f 75 74 20 3d 20 73  |   FILE *out = s|
00000290  74 64 6f 75 74 3b 0a 0a  20 20 20 20 69 66 20 28  |tdout;..    if (|
000002a0  20 2a 4f 75 74 46 69 6c  65 4e 61 6d 65 20 29 20  | *OutFileName ) |
000002b0  20 6f 75 74 20 3d 20 66  6f 70 65 6e 28 20 4f 75  | out = fopen( Ou|
000002c0  74 46 69 6c 65 4e 61 6d  65 2c 20 22 77 22 20 29  |tFileName, "w" )|
000002d0  3b 0a 0a 20 20 20 20 69  66 20 28 20 6f 75 74 20  |;..    if ( out |
000002e0  29 0a 20 20 20 20 7b 0a  20 20 20 20 20 20 20 20  |).    {.        |
000002f0  4c 69 73 74 57 6f 72 64  73 28 20 6f 75 74 2c 20  |ListWords( out, |
00000300  6c 69 73 74 2c 20 52 65  70 65 61 74 43 6f 75 6e  |list, RepeatCoun|
00000310  74 20 29 3b 0a 20 20 20  20 20 20 20 20 69 66 20  |t );.        if |
00000320  28 20 6f 75 74 20 21 3d  20 73 74 64 6f 75 74 20  |( out != stdout |
00000330  29 20 20 66 63 6c 6f 73  65 28 20 6f 75 74 20 29  |)  fclose( out )|
00000340  3b 0a 20 20 20 20 7d 0a  20 20 20 20 65 6c 73 65  |;.    }.    else|
00000350  0a 20 20 20 20 20 20 20  20 70 72 69 6e 74 66 28  |.        printf(|
00000360  20 22 55 6e 61 62 6c 65  20 74 6f 20 6f 70 65 6e  | "Unable to open|
00000370  20 6f 75 74 70 75 74 20  66 69 6c 65 20 27 25 73  | output file '%s|
00000380  27 22 2c 20 4f 75 74 46  69 6c 65 4e 61 6d 65 20  |'", OutFileName |
00000390  29 3b 0a 7d 0a 0a 0a 73  74 61 74 69 63 20 76 6f  |);.}...static vo|
000003a0  69 64 20 52 65 61 64 46  69 6c 65 28 20 77 6f 72  |id ReadFile( wor|
000003b0  64 20 2a 6c 69 73 74 20  29 0a 7b 0a 20 20 20 20  |d *list ).{.    |
000003c0  69 6e 74 20 20 20 20 6c  65 6e 3b 0a 20 20 20 20  |int    len;.    |
000003d0  73 74 72 69 6e 67 20 62  75 66 66 65 72 3b 0a 20  |string buffer;. |
000003e0  20 20 20 46 49 4c 45 20  20 2a 69 6e 20 3d 20 66  |   FILE  *in = f|
000003f0  6f 70 65 6e 28 20 49 6e  46 69 6c 65 4e 61 6d 65  |open( InFileName|
00000400  2c 20 22 72 22 20 29 3b  0a 0a 20 20 20 20 69 66  |, "r" );..    if|
00000410  20 28 20 69 6e 20 29 0a  20 20 20 20 7b 0a 20 20  | ( in ).    {.  |
00000420  20 20 20 20 20 20 77 68  69 6c 65 20 28 20 6c 65  |      while ( le|
00000430  6e 20 3d 20 47 65 74 57  6f 72 64 28 62 75 66 66  |n = GetWord(buff|
00000440  65 72 2c 53 54 52 4c 45  4e 2c 69 6e 29 2c 20 6c  |er,STRLEN,in), l|
00000450  65 6e 20 29 0a 20 20 20  20 20 20 20 20 7b 0a 20  |en ).        {. |
00000460  20 20 20 20 20 20 20 20  20 20 20 69 66 20 28 20  |           if ( |
00000470  6c 65 6e 20 3e 3d 20 4d  69 6e 57 6f 72 64 53 69  |len >= MinWordSi|
00000480  7a 65 20 29 0a 20 20 20  20 20 20 20 20 20 20 20  |ze ).           |
00000490  20 7b 0a 20 20 20 20 20  20 20 20 20 20 20 20 20  | {.             |
000004a0  20 20 20 69 66 20 28 20  4c 6f 77 65 72 43 61 73  |   if ( LowerCas|
000004b0  65 20 29 20 54 6f 4c 6f  77 65 72 43 61 73 65 28  |e ) ToLowerCase(|
000004c0  20 62 75 66 66 65 72 20  29 3b 0a 20 20 20 20 20  | buffer );.     |
000004d0  20 20 20 20 20 20 20 20  20 20 20 69 66 20 28 20  |           if ( |
000004e0  55 70 70 65 72 43 61 73  65 20 29 20 54 6f 55 70  |UpperCase ) ToUp|
000004f0  70 65 72 43 61 73 65 28  20 62 75 66 66 65 72 20  |perCase( buffer |
00000500  29 3b 0a 0a 20 20 20 20  20 20 20 20 20 20 20 20  |);..            |
00000510  20 20 20 20 53 74 6f 72  65 57 6f 72 64 28 20 62  |    StoreWord( b|
00000520  75 66 66 65 72 2c 20 6c  69 73 74 20 29 3b 0a 20  |uffer, list );. |
00000530  20 20 20 20 20 20 20 20  20 20 20 7d 0a 20 20 20  |           }.   |
00000540  20 20 20 20 20 7d 0a 0a  20 20 20 20 20 20 20 20  |     }..        |
00000550  66 63 6c 6f 73 65 28 20  69 6e 20 29 3b 0a 20 20  |fclose( in );.  |
00000560  20 20 7d 0a 20 20 20 20  65 6c 73 65 0a 20 20 20  |  }.    else.   |
00000570  20 20 20 20 20 70 72 69  6e 74 66 28 20 22 55 6e  |     printf( "Un|
00000580  61 62 6c 65 20 74 6f 20  6f 70 65 6e 20 69 6e 70  |able to open inp|
00000590  75 74 20 66 69 6c 65 20  27 25 73 27 22 2c 20 49  |ut file '%s'", I|
000005a0  6e 46 69 6c 65 4e 61 6d  65 20 29 3b 0a 7d 0a 0a  |nFileName );.}..|
000005b0  0a 73 74 61 74 69 63 20  69 6e 74 20 53 65 74 49  |.static int SetI|
000005c0  6e 70 75 74 46 69 6c 65  28 20 63 68 61 72 20 2a  |nputFile( char *|
000005d0  61 72 67 76 5b 5d 20 29  0a 7b 0a 20 20 20 20 73  |argv[] ).{.    s|
000005e0  74 72 6e 63 70 79 28 20  49 6e 46 69 6c 65 4e 61  |trncpy( InFileNa|
000005f0  6d 65 2c 20 61 72 67 76  5b 30 5d 2c 20 4d 41 58  |me, argv[0], MAX|
00000600  50 41 54 48 20 29 3b 0a  0a 20 20 20 20 72 65 74  |PATH );..    ret|
00000610  75 72 6e 20 31 3b 0a 7d  0a 0a 0a 73 74 61 74 69  |urn 1;.}...stati|
00000620  63 20 69 6e 74 20 53 65  74 4f 75 74 70 75 74 46  |c int SetOutputF|
00000630  69 6c 65 28 20 63 68 61  72 20 2a 61 72 67 76 5b  |ile( char *argv[|
00000640  5d 2c 20 69 6e 74 20 6c  65 66 74 20 29 0a 7b 0a  |], int left ).{.|
00000650  20 20 20 20 69 66 20 28  20 6c 65 66 74 20 3e 20  |    if ( left > |
00000660  31 20 29 0a 20 20 20 20  20 20 20 20 73 74 72 6e  |1 ).        strn|
00000670  63 70 79 28 20 4f 75 74  46 69 6c 65 4e 61 6d 65  |cpy( OutFileName|
00000680  2c 20 61 72 67 76 5b 31  5d 2c 20 4d 41 58 50 41  |, argv[1], MAXPA|
00000690  54 48 20 29 3b 0a 20 20  20 20 65 6c 73 65 0a 20  |TH );.    else. |
000006a0  20 20 20 20 20 20 20 70  72 69 6e 74 66 28 20 22  |       printf( "|
000006b0  4d 69 73 73 69 6e 67 20  66 69 6c 65 6e 61 6d 65  |Missing filename|
000006c0  20 61 66 74 65 72 20 27  25 73 27 20 66 6c 61 67  | after '%s' flag|
000006d0  2e 22 2c 20 61 72 67 76  5b 30 5d 20 29 3b 0a 0a  |.", argv[0] );..|
000006e0  20 20 20 20 72 65 74 75  72 6e 20 32 3b 0a 7d 0a  |    return 2;.}.|
000006f0  0a 0a 73 74 61 74 69 63  20 69 6e 74 20 53 65 74  |..static int Set|
00000700  43 61 73 65 53 65 6e 73  69 74 69 76 69 74 79 28  |CaseSensitivity(|
00000710  20 63 68 61 72 20 2a 61  72 67 76 5b 5d 20 29 0a  | char *argv[] ).|
00000720  7b 0a 20 20 20 20 43 61  73 65 53 65 6e 73 69 74  |{.    CaseSensit|
00000730  69 76 65 20 3d 20 54 52  55 45 3b 0a 0a 20 20 20  |ive = TRUE;..   |
00000740  20 69 66 20 28 20 43 61  73 65 53 65 6e 73 69 74  | if ( CaseSensit|
00000750  69 76 65 20 29 0a 20 20  20 20 7b 0a 20 20 20 20  |ive ).    {.    |
00000760  20 20 20 20 55 70 70 65  72 43 61 73 65 20 3d 20  |    UpperCase = |
00000770  46 41 4c 53 45 3b 0a 20  20 20 20 20 20 20 20 4c  |FALSE;.        L|
00000780  6f 77 65 72 43 61 73 65  20 3d 20 46 41 4c 53 45  |owerCase = FALSE|
00000790  3b 0a 20 20 20 20 7d 0a  0a 20 20 20 20 72 65 74  |;.    }..    ret|
000007a0  75 72 6e 20 31 3b 0a 7d  0a 0a 0a 73 74 61 74 69  |urn 1;.}...stati|
000007b0  63 20 69 6e 74 20 53 65  74 55 70 70 65 72 43 61  |c int SetUpperCa|
000007c0  73 65 43 6f 6e 76 65 72  73 69 6f 6e 28 20 63 68  |seConversion( ch|
000007d0  61 72 20 2a 61 72 67 76  5b 5d 20 29 0a 7b 0a 20  |ar *argv[] ).{. |
000007e0  20 20 20 55 70 70 65 72  43 61 73 65 20 20 20 20  |   UpperCase    |
000007f0  20 3d 20 54 52 55 45 3b  0a 20 20 20 20 43 61 73  | = TRUE;.    Cas|
00000800  65 53 65 6e 73 69 74 69  76 65 20 3d 20 46 41 4c  |eSensitive = FAL|
00000810  53 45 3b 0a 0a 20 20 20  20 72 65 74 75 72 6e 20  |SE;..    return |
00000820  31 3b 0a 7d 0a 0a 0a 73  74 61 74 69 63 20 69 6e  |1;.}...static in|
00000830  74 20 53 65 74 4c 6f 77  65 72 43 61 73 65 43 6f  |t SetLowerCaseCo|
00000840  6e 76 65 72 73 69 6f 6e  28 20 63 68 61 72 20 2a  |nversion( char *|
00000850  61 72 67 76 5b 5d 20 29  0a 7b 0a 20 20 20 20 4c  |argv[] ).{.    L|
00000860  6f 77 65 72 43 61 73 65  20 20 20 20 20 3d 20 54  |owerCase     = T|
00000870  52 55 45 3b 0a 20 20 20  20 43 61 73 65 53 65 6e  |RUE;.    CaseSen|
00000880  73 69 74 69 76 65 20 3d  20 46 41 4c 53 45 3b 0a  |sitive = FALSE;.|
00000890  0a 20 20 20 20 72 65 74  75 72 6e 20 31 3b 0a 7d  |.    return 1;.}|
000008a0  0a 0a 0a 73 74 61 74 69  63 20 69 6e 74 20 53 65  |...static int Se|
000008b0  74 52 65 70 65 61 74 43  6f 75 6e 74 28 20 63 68  |tRepeatCount( ch|
000008c0  61 72 20 2a 61 72 67 76  5b 5d 20 29 0a 7b 0a 20  |ar *argv[] ).{. |
000008d0  20 20 20 52 65 70 65 61  74 43 6f 75 6e 74 20 3d  |   RepeatCount =|
000008e0  20 54 52 55 45 3b 0a 20  20 20 20 72 65 74 75 72  | TRUE;.    retur|
000008f0  6e 20 31 3b 0a 7d 0a 0a  0a 73 74 61 74 69 63 20  |n 1;.}...static |
00000900  69 6e 74 20 53 65 74 57  6f 72 64 53 69 7a 65 28  |int SetWordSize(|
00000910  20 63 68 61 72 20 2a 61  72 67 76 5b 5d 2c 20 69  | char *argv[], i|
00000920  6e 74 20 6c 65 66 74 20  29 0a 7b 0a 20 20 20 20  |nt left ).{.    |
00000930  69 66 20 28 20 6c 65 66  74 20 3e 20 31 20 29 0a  |if ( left > 1 ).|
00000940  20 20 20 20 20 20 20 20  4d 69 6e 57 6f 72 64 53  |        MinWordS|
00000950  69 7a 65 20 3d 20 28 69  6e 74 29 20 73 74 72 74  |ize = (int) strt|
00000960  6f 6c 28 20 61 72 67 76  5b 31 5d 2c 20 4e 55 4c  |ol( argv[1], NUL|
00000970  4c 2c 20 31 30 20 29 3b  0a 20 20 20 20 65 6c 73  |L, 10 );.    els|
00000980  65 0a 20 20 20 20 20 20  20 20 70 72 69 6e 74 66  |e.        printf|
00000990  28 20 22 4d 69 73 73 69  6e 67 20 76 61 6c 75 65  |( "Missing value|
000009a0  20 61 66 74 65 72 20 27  25 73 27 20 66 6c 61 67  | after '%s' flag|
000009b0  2e 5c 6e 22 2c 20 61 72  67 76 5b 30 5d 20 29 3b  |.\n", argv[0] );|
000009c0  0a 0a 20 20 20 20 72 65  74 75 72 6e 20 32 3b 0a  |..    return 2;.|
000009d0  7d 0a 0a 0a 73 74 61 74  69 63 20 69 6e 74 20 48  |}...static int H|
000009e0  61 6e 64 6c 65 43 6f 6d  6d 61 6e 64 4c 69 6e 65  |andleCommandLine|
000009f0  28 20 69 6e 74 20 61 72  67 63 2c 20 63 68 61 72  |( int argc, char|
00000a00  20 2a 61 72 67 76 5b 5d  20 29 0a 7b 0a 20 20 20  | *argv[] ).{.   |
00000a10  20 69 6e 74 20 63 6f 75  6e 74 20 3d 20 31 3b 0a  | int count = 1;.|
00000a20  0a 20 20 20 20 69 66 20  28 20 61 72 67 63 20 3e  |.    if ( argc >|
00000a30  20 31 20 29 0a 20 20 20  20 7b 0a 20 20 20 20 20  | 1 ).    {.     |
00000a40  20 20 20 63 6f 75 6e 74  20 2b 3d 20 53 65 74 49  |   count += SetI|
00000a50  6e 70 75 74 46 69 6c 65  28 20 26 61 72 67 76 5b  |nputFile( &argv[|
00000a60  63 6f 75 6e 74 5d 20 29  3b 0a 0a 20 20 20 20 20  |count] );..     |
00000a70  20 20 20 77 68 69 6c 65  20 28 20 63 6f 75 6e 74  |   while ( count|
00000a80  20 3c 20 61 72 67 63 20  29 0a 20 20 20 20 20 20  | < argc ).      |
00000a90  20 20 7b 0a 20 20 20 20  20 20 20 20 20 20 20 20  |  {.            |
00000aa0  69 6e 74 20 6c 65 66 74  20 3d 20 61 72 67 63 20  |int left = argc |
00000ab0  2d 20 63 6f 75 6e 74 3b  0a 0a 20 20 20 20 20 20  |- count;..      |
00000ac0  20 20 20 20 20 20 73 77  69 74 63 68 20 28 20 61  |      switch ( a|
00000ad0  72 67 76 5b 63 6f 75 6e  74 5d 5b 30 5d 20 29 0a  |rgv[count][0] ).|
00000ae0  20 20 20 20 20 20 20 20  20 20 20 20 7b 0a 20 20  |            {.  |
00000af0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 63 61  |              ca|
00000b00  73 65 20 27 43 27 20 3a  0a 20 20 20 20 20 20 20  |se 'C' :.       |
00000b10  20 20 20 20 20 20 20 20  20 63 61 73 65 20 27 63  |         case 'c|
00000b20  27 20 3a 20 63 6f 75 6e  74 20 2b 3d 20 53 65 74  |' : count += Set|
00000b30  43 61 73 65 53 65 6e 73  69 74 69 76 69 74 79 28  |CaseSensitivity(|
00000b40  20 26 61 72 67 76 5b 63  6f 75 6e 74 5d 20 29 3b  | &argv[count] );|
00000b50  0a 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |.               |
00000b60  20 20 20 20 20 20 20 20  20 20 20 20 62 72 65 61  |            brea|
00000b70  6b 3b 0a 0a 20 20 20 20  20 20 20 20 20 20 20 20  |k;..            |
00000b80  20 20 20 20 63 61 73 65  20 27 4f 27 20 3a 0a 20  |    case 'O' :. |
00000b90  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 63  |               c|
00000ba0  61 73 65 20 27 6f 27 20  3a 20 63 6f 75 6e 74 20  |ase 'o' : count |
00000bb0  2b 3d 20 53 65 74 4f 75  74 70 75 74 46 69 6c 65  |+= SetOutputFile|
00000bc0  28 20 26 61 72 67 76 5b  63 6f 75 6e 74 5d 2c 20  |( &argv[count], |
00000bd0  6c 65 66 74 20 29 3b 0a  20 20 20 20 20 20 20 20  |left );.        |
00000be0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000bf0  20 20 20 62 72 65 61 6b  3b 0a 0a 20 20 20 20 20  |   break;..     |
00000c00  20 20 20 20 20 20 20 20  20 20 20 63 61 73 65 20  |           case |
00000c10  27 53 27 20 3a 0a 20 20  20 20 20 20 20 20 20 20  |'S' :.          |
00000c20  20 20 20 20 20 20 63 61  73 65 20 27 73 27 20 3a  |      case 's' :|
00000c30  20 63 6f 75 6e 74 20 2b  3d 20 53 65 74 57 6f 72  | count += SetWor|
00000c40  64 53 69 7a 65 28 20 26  61 72 67 76 5b 63 6f 75  |dSize( &argv[cou|
00000c50  6e 74 5d 2c 20 6c 65 66  74 20 29 3b 0a 20 20 20  |nt], left );.   |
00000c60  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000c70  20 20 20 20 20 20 20 20  62 72 65 61 6b 3b 0a 0a  |        break;..|
00000c80  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000c90  63 61 73 65 20 27 52 27  20 3a 0a 20 20 20 20 20  |case 'R' :.     |
00000ca0  20 20 20 20 20 20 20 20  20 20 20 63 61 73 65 20  |           case |
00000cb0  27 72 27 20 3a 20 63 6f  75 6e 74 20 2b 3d 20 53  |'r' : count += S|
00000cc0  65 74 52 65 70 65 61 74  43 6f 75 6e 74 28 20 26  |etRepeatCount( &|
00000cd0  61 72 67 76 5b 63 6f 75  6e 74 5d 20 29 3b 0a 20  |argv[count] );. |
00000ce0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000cf0  20 20 20 20 20 20 20 20  20 20 62 72 65 61 6b 3b  |          break;|
00000d00  0a 0a 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |..              |
00000d10  20 20 63 61 73 65 20 27  55 27 20 3a 0a 20 20 20  |  case 'U' :.   |
00000d20  20 20 20 20 20 20 20 20  20 20 20 20 20 63 61 73  |             cas|
00000d30  65 20 27 75 27 20 3a 20  63 6f 75 6e 74 20 2b 3d  |e 'u' : count +=|
00000d40  20 53 65 74 55 70 70 65  72 43 61 73 65 43 6f 6e  | SetUpperCaseCon|
00000d50  76 65 72 73 69 6f 6e 28  20 26 61 72 67 76 5b 63  |version( &argv[c|
00000d60  6f 75 6e 74 5d 20 29 3b  0a 20 20 20 20 20 20 20  |ount] );.       |
00000d70  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000d80  20 20 20 20 62 72 65 61  6b 3b 0a 0a 20 20 20 20  |    break;..    |
00000d90  20 20 20 20 20 20 20 20  20 20 20 20 63 61 73 65  |            case|
00000da0  20 27 4c 27 20 3a 0a 20  20 20 20 20 20 20 20 20  | 'L' :.         |
00000db0  20 20 20 20 20 20 20 63  61 73 65 20 27 6c 27 20  |       case 'l' |
00000dc0  3a 20 63 6f 75 6e 74 20  2b 3d 20 53 65 74 4c 6f  |: count += SetLo|
00000dd0  77 65 72 43 61 73 65 43  6f 6e 76 65 72 73 69 6f  |werCaseConversio|
00000de0  6e 28 20 26 61 72 67 76  5b 63 6f 75 6e 74 5d 20  |n( &argv[count] |
00000df0  29 3b 0a 20 20 20 20 20  20 20 20 20 20 20 20 20  |);.             |
00000e00  20 20 20 20 20 20 20 20  20 20 20 20 20 20 62 72  |              br|
00000e10  65 61 6b 3b 0a 0a 20 20  20 20 20 20 20 20 20 20  |eak;..          |
00000e20  20 20 20 20 20 20 64 65  66 61 75 6c 74 20 20 3a  |      default  :|
00000e30  20 70 72 69 6e 74 66 28  20 22 55 6e 6b 6e 6f 77  | printf( "Unknow|
00000e40  6e 20 63 6f 6d 6d 61 6e  64 20 6c 69 6e 65 20 66  |n command line f|
00000e50  6c 61 67 20 27 25 73 27  5c 6e 22 2c 20 61 72 67  |lag '%s'\n", arg|
00000e60  76 5b 63 6f 75 6e 74 5d  20 29 3b 0a 20 20 20 20  |v[count] );.    |
00000e70  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000e80  20 20 20 20 20 20 20 63  6f 75 6e 74 2b 2b 3b 0a  |       count++;.|
00000e90  20 20 20 20 20 20 20 20  20 20 20 20 7d 0a 20 20  |            }.  |
00000ea0  20 20 20 20 20 20 7d 0a  0a 20 20 20 20 20 20 20  |      }..       |
00000eb0  20 72 65 74 75 72 6e 20  54 52 55 45 3b 0a 20 20  | return TRUE;.  |
00000ec0  20 20 7d 0a 20 20 20 20  65 6c 73 65 0a 20 20 20  |  }.    else.   |
00000ed0  20 7b 0a 20 20 20 20 20  20 20 20 70 75 74 73 28  | {.        puts(|
00000ee0  20 22 4e 6f 20 69 6e 70  75 74 20 66 69 6c 65 20  | "No input file |
00000ef0  6e 61 6d 65 20 73 75 70  70 6c 69 65 64 2e 22 20  |name supplied." |
00000f00  29 3b 0a 20 20 20 20 20  20 20 20 72 65 74 75 72  |);.        retur|
00000f10  6e 20 46 41 4c 53 45 3b  0a 20 20 20 20 7d 0a 7d  |n FALSE;.    }.}|
00000f20  0a 0a 0a 69 6e 74 20 6d  61 69 6e 28 20 69 6e 74  |...int main( int|
00000f30  20 61 72 67 63 2c 20 63  68 61 72 20 2a 61 72 67  | argc, char *arg|
00000f40  76 5b 5d 20 29 0a 7b 0a  20 20 20 20 77 6f 72 64  |v[] ).{.    word|
00000f50  20 6c 69 73 74 20 3d 20  4e 55 4c 4c 3b 0a 20 0a  | list = NULL;. .|
00000f60  20 20 20 20 69 66 20 28  20 48 61 6e 64 6c 65 43  |    if ( HandleC|
00000f70  6f 6d 6d 61 6e 64 4c 69  6e 65 28 20 61 72 67 63  |ommandLine( argc|
00000f80  2c 20 61 72 67 76 20 29  20 29 20 0a 20 20 20 20  |, argv ) ) .    |
00000f90  7b 0a 20 20 20 20 20 20  20 20 52 65 61 64 46 69  |{.        ReadFi|
00000fa0  6c 65 28 20 26 6c 69 73  74 20 29 3b 0a 20 20 20  |le( &list );.   |
00000fb0  20 20 20 20 20 57 72 69  74 65 46 69 6c 65 28 20  |     WriteFile( |
00000fc0  6c 69 73 74 20 29 3b 0a  20 20 20 20 20 20 20 20  |list );.        |
00000fd0  72 65 74 75 72 6e 20 30  3b 0a 20 20 20 20 7d 0a  |return 0;.    }.|
00000fe0  20 20 20 20 65 6c 73 65  0a 20 20 20 20 20 20 20  |    else.       |
00000ff0  20 72 65 74 75 72 6e 20  31 3b 0a 7d 0a 0a        | return 1;.}..|
00000ffe