Migrated from GPL version 2 to GPL version 3
[findutils.git] / locate / bigram.c
blob0877cdbd3713f409ca2b3c9e2947db71067900e9
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 3 of the License, or
7 (at your option) 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, see <http://www.gnu.org/licenses/>.
18 /* Usage: bigram < text > bigrams
19 Use `code' to encode a file using this output.
21 Read a file from stdin and write out the bigrams (pairs of
22 adjacent characters), one bigram per line, to stdout. To reduce
23 needless duplication in the output, it starts finding the
24 bigrams on each input line at the character where that line
25 first differs from the previous line (i.e., in the ASCII
26 remainder). Therefore, the input should be sorted in order to
27 get the least redundant output.
29 Written by James A. Woods <jwoods@adobe.com>.
30 Modified by David MacKenzie <djm@gnu.ai.mit.edu>. */
32 #include <config.h>
33 #include <stdio.h>
35 #if defined HAVE_STRING_H || defined STDC_HEADERS
36 #include <string.h>
37 #else
38 #include <strings.h>
39 #endif
41 #ifdef STDC_HEADERS
42 #include <stdlib.h>
43 #endif
44 #include <sys/types.h>
46 #include <getline.h>
47 #include <xalloc.h>
48 #include "closeout.h"
50 /* The name this program was run with. */
51 char *program_name;
53 /* Return the length of the longest common prefix of strings S1 and S2. */
55 static int
56 prefix_length (char *s1, char *s2)
58 register char *start;
60 for (start = s1; *s1 == *s2 && *s1 != '\0'; s1++, s2++)
62 return s1 - start;
65 int
66 main (int argc, char **argv)
68 char *path; /* The current input entry. */
69 char *oldpath; /* The previous input entry. */
70 size_t pathsize, oldpathsize; /* Amounts allocated for them. */
71 int line_len; /* Length of input line. */
73 program_name = argv[0];
74 (void) argc;
75 atexit (close_stdout);
77 pathsize = oldpathsize = 1026; /* Increased as necessary by getline. */
78 path = xmalloc (pathsize);
79 oldpath = xmalloc (oldpathsize);
81 /* Set to empty string, to force the first prefix count to 0. */
82 oldpath[0] = '\0';
84 while ((line_len = getline (&path, &pathsize, stdin)) > 0)
86 register int count; /* The prefix length. */
87 register int j; /* Index into input line. */
89 path[line_len - 1] = '\0'; /* Remove the newline. */
91 /* Output bigrams in the remainder only. */
92 count = prefix_length (oldpath, path);
93 for (j = count; path[j] != '\0' && path[j + 1] != '\0'; j += 2)
95 putchar (path[j]);
96 putchar (path[j + 1]);
97 putchar ('\n');
101 /* Swap path and oldpath and their sizes. */
102 char *tmppath = oldpath;
103 size_t tmppathsize = oldpathsize;
104 oldpath = path;
105 oldpathsize = pathsize;
106 path = tmppath;
107 pathsize = tmppathsize;
111 free (path);
112 free (oldpath);
114 return 0;