+/* $NetBSD: mkindex.c,v 1.8 2000/07/31 11:29:48 simonb Exp $ */
+
/*-
* Copyright (c) 1993
* The Regents of the University of California. All rights reserved.
*/
#ifndef lint
-static char copyright[] =
-"@(#) Copyright (c) 1993\n\
+static char copyright[] = "@(#) Copyright (c) 1993\n\
The Regents of the University of California. All rights reserved.\n";
-#endif /* not lint */
-#ifndef lint
+#if 0
static char sccsid[] = "@(#)mkindex.c 8.1 (Berkeley) 6/11/93";
+#else
+static char rcsid[] =
+ "$NetBSD: mkindex.c,v 1.8 2000/07/31 11:29:48 simonb Exp $";
+#endif
#endif /* not lint */
#include <stdio.h>
+#include <stdlib.h>
#include "bog.h"
-char *nextword __P((FILE *, char *, int *, int *));
+int main(void);
+char *nextword(FILE *, char *, int *, int *);
int
-main(argc, argv)
- int argc;
- char *argv[];
+main(void)
{
- int clen, rlen, prev;
+ int clen, rlen, prev, i;
long off, start;
char buf[MAXWORDLEN + 1];
off = start = 0L;
while (nextword(stdin, buf, &clen, &rlen) != NULL) {
if (*buf != prev) {
+ /*
+ * Boggle expects a full index even if the dictionary
+ * had no words beginning with some letters.
+ * So we write out entries for every letter from prev
+ * to *buf.
+ */
if (prev != '\0')
printf("%c %6ld %6ld\n", prev, start, off - 1);
+ for (i = (prev ? prev + 1 : 'a'); i < *buf; i++)
+ printf("%c %6ld %6ld\n", i, off, off - 1);
prev = *buf;
start = off;
}
off += clen + 1;
}
printf("%c %6ld %6ld\n", prev, start, off - 1);
+ for (i = prev + 1; i <= 'z'; i++)
+ printf("%c %6ld %6ld\n", i, off, off - 1);
+ fflush(stdout);
+ if (ferror(stdout)) {
+ perror("error writing standard output");
+ exit(1);
+ }
exit(0);
}
char *buffer;
int *clen, *rlen;
{
- register int ch, pcount;
- register char *p, *q;
+ int ch, pcount;
+ char *p, *q;
static char buf[MAXWORDLEN + 1];
static int first = 1;
static int lastch = 0;