/*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
/* All Rights Reserved */
/*
* Copyright (c) 1980 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <stdio.h>
#include <locale.h>
int wholefile = 0;
extern int comcount;
extern void dofile();
extern void err();
extern char *trimnl();
int
{
/*
* this program expects as its arguments a list of
* files and generates a set of lines of the form
* filename:byte-add,length (tab) key1 key2 key3
* where the byte addresses give the position within
* the file and the keys are the strings off the lines
* which are alphabetic, first six characters only.
*/
int i;
char *inlist = 0;
#if !defined(TEXT_DOMAIN)
#endif
(void) textdomain(TEXT_DOMAIN);
case 'c':
argv++;
argc--;
break;
case 'w':
wholefile = 1;
break;
case 'f':
argv++;
argc--;
break;
case 'i':
argv++;
argc--;
break;
case 'l':
break;
case 'n': /* number of common words to use */
break;
case 'k': /* number of keys per file max */
break;
case 's': /* suppress labels, search only */
labels = 0;
break;
}
argc--;
argv++;
}
if (inlist) {
if (f != NULL)
else
}
} else
if (argc <= 1)
else
for (i = 1; i < argc; i++) {
if (f == NULL)
else
}
return (0);
}