Updated the discussion of th error messages for findutils-4.2.8.
[findutils.git] / locate / bigram.c
blobd0d0f364ef8714cdabd9e9396fda9d4f7529b9cb
1 /* bigram -- list bigrams for locate
2 Copyright (C) 1994 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
7 any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
17 USA.
20 /* Usage: bigram < text > bigrams
21 Use `code' to encode a file using this output.
23 Read a file from stdin and write out the bigrams (pairs of
24 adjacent characters), one bigram per line, to stdout. To reduce
25 needless duplication in the output, it starts finding the
26 bigrams on each input line at the character where that line
27 first differs from the previous line (i.e., in the ASCII
28 remainder). Therefore, the input should be sorted in order to
29 get the least redundant output.
31 Written by James A. Woods <jwoods@adobe.com>.
32 Modified by David MacKenzie <djm@gnu.ai.mit.edu>. */
34 #include <config.h>
35 #include <stdio.h>
37 #if defined(HAVE_STRING_H) || defined(STDC_HEADERS)
38 #include <string.h>
39 #else
40 #include <strings.h>
41 #endif
43 #ifdef STDC_HEADERS
44 #include <stdlib.h>
45 #endif
46 #include <sys/types.h>
48 #include <getline.h>
49 #include <xalloc.h>
51 /* The name this program was run with. */
52 char *program_name;
54 /* Return the length of the longest common prefix of strings S1 and S2. */
56 static int
57 prefix_length (char *s1, char *s2)
59 register char *start;
61 for (start = s1; *s1 == *s2 && *s1 != '\0'; s1++, s2++)
63 return s1 - start;
66 int
67 main (int argc, char **argv)
69 char *path; /* The current input entry. */
70 char *oldpath; /* The previous input entry. */
71 size_t pathsize, oldpathsize; /* Amounts allocated for them. */
72 int line_len; /* Length of input line. */
74 program_name = argv[0];
75 (void) argc;
77 pathsize = oldpathsize = 1026; /* Increased as necessary by getline. */
78 path = xmalloc (pathsize);
79 oldpath = xmalloc (oldpathsize);
81 /* Set to anything not starting with a slash, to force the first
82 prefix count to 0. */
83 strcpy (oldpath, " ");
85 while ((line_len = getline (&path, &pathsize, stdin)) > 0)
87 register int count; /* The prefix length. */
88 register int j; /* Index into input line. */
90 path[line_len - 1] = '\0'; /* Remove the newline. */
92 /* Output bigrams in the remainder only. */
93 count = prefix_length (oldpath, path);
94 for (j = count; path[j] != '\0' && path[j + 1] != '\0'; j += 2)
96 putchar (path[j]);
97 putchar (path[j + 1]);
98 putchar ('\n');
102 /* Swap path and oldpath and their sizes. */
103 char *tmppath = oldpath;
104 size_t tmppathsize = oldpathsize;
105 oldpath = path;
106 oldpathsize = pathsize;
107 path = tmppath;
108 pathsize = tmppathsize;
112 free (path);
113 free (oldpath);
115 return 0;