Mercurial > emacs
annotate lib-src/yow.c @ 20892:18f3cb26243f before-miles-orphaned-changes gcc-2_8_1-980401 gcc-2_8_1-980407 gcc-2_8_1-980412 gcc-2_8_1-980413 gcc-2_8_1-RELEASE gcc_2_8_1-980315 libc-980214 libc-980215 libc-980216 libc-980217 libc-980218 libc-980219 libc-980220 libc-980221 libc-980222 libc-980223 libc-980224 libc-980225 libc-980226 libc-980227 libc-980228 libc-980301 libc-980302 libc-980303 libc-980304 libc-980306 libc-980307 libc-980308 libc-980309 libc-980310 libc-980311 libc-980312 libc-980313 libc-980314 libc-980315 libc-980316 libc-980317 libc-980318 libc-980319 libc-980320 libc-980321 libc-980322 libc-980323 libc-980324 libc-980325 libc-980326 libc-980327 libc-980328 libc-980329 libc-980330 libc-980331 libc-980401 libc-980402 libc-980403 libc-980404 libc-980405 libc-980406 libc-980407 libc-980408 libc-980409 libc-980410 libc-980411 libc-980412 libc-980413 libc-980414 libc-980428 libc-980429 libc-980430 libc-980501 libc-980502 libc-980503 libc-980504 libc-980505 libc-980506 libc-980507 libc-980508 libc-980509 libc-980510 libc-980512 libc-980513 libc-980514 libc-980515 libc-980516 libc-980517 libc-980518 libc-980519 libc-980520 libc-980521 libc-980522 libc-980523 libc-980524 libc-980525 libc-980526 libc-980527 libc-980528 libc-980529 libc-980530 libc-980531 libc-980601 libc-980602 libc-980603 libc-980604 libc-980605 libc-980606 libc-980607 libc-980608 libc-980609 libc-980610 libc-980611 libc-980612 libc-980613
Add PentiumII (i786). Add '7' to all i[3456] entries.
Add AMD and Cyrix names for P5 and P6.
author | Richard Kenner <kenner@gnu.org> |
---|---|
date | Fri, 13 Feb 1998 12:16:46 +0000 |
parents | fdac027af4e1 |
children | 595856efc8f1 |
rev | line source |
---|---|
42 | 1 /* |
2 * yow.c | |
12 | 3 * |
4 * Print a quotation from Zippy the Pinhead. | |
5 * Qux <Kaufman-David@Yale> March 6, 1986 | |
11183 | 6 * |
7 * This file is in the public domain because the author published it | |
8 * with no copyright notice before the US signed the Bern Convention. | |
12 | 9 * |
42 | 10 * With dynamic memory allocation. |
12 | 11 */ |
12 | |
42 | 13 #include <stdio.h> |
14 #include <ctype.h> | |
4702
2641ab559aae
Include <src/paths.h>, instead "src/paths.h".
Roland McGrath <roland@gnu.org>
parents:
3591
diff
changeset
|
15 #include <../src/paths.h> /* For PATH_DATA. */ |
42 | 16 |
17 #define BUFSIZE 80 | |
12 | 18 #define SEP '\0' |
42 | 19 |
20 #ifndef YOW_FILE | |
12 | 21 #define YOW_FILE "yow.lines" |
42 | 22 #endif |
12 | 23 |
7820
128950f29e66
(rootrelativepath) [MSDOS]: Define, expanding to dynamic
Richard M. Stallman <rms@gnu.org>
parents:
4702
diff
changeset
|
24 #ifdef MSDOS |
128950f29e66
(rootrelativepath) [MSDOS]: Define, expanding to dynamic
Richard M. Stallman <rms@gnu.org>
parents:
4702
diff
changeset
|
25 #define rootrelativepath(rel) \ |
128950f29e66
(rootrelativepath) [MSDOS]: Define, expanding to dynamic
Richard M. Stallman <rms@gnu.org>
parents:
4702
diff
changeset
|
26 ({\ |
128950f29e66
(rootrelativepath) [MSDOS]: Define, expanding to dynamic
Richard M. Stallman <rms@gnu.org>
parents:
4702
diff
changeset
|
27 static char res[BUFSIZE], *p;\ |
128950f29e66
(rootrelativepath) [MSDOS]: Define, expanding to dynamic
Richard M. Stallman <rms@gnu.org>
parents:
4702
diff
changeset
|
28 strcpy (res, argv[0]);\ |
128950f29e66
(rootrelativepath) [MSDOS]: Define, expanding to dynamic
Richard M. Stallman <rms@gnu.org>
parents:
4702
diff
changeset
|
29 p = res + strlen (res);\ |
128950f29e66
(rootrelativepath) [MSDOS]: Define, expanding to dynamic
Richard M. Stallman <rms@gnu.org>
parents:
4702
diff
changeset
|
30 while (p != res && *p != '/' && *p != '\\' && *p != ':') p--;\ |
128950f29e66
(rootrelativepath) [MSDOS]: Define, expanding to dynamic
Richard M. Stallman <rms@gnu.org>
parents:
4702
diff
changeset
|
31 strcpy (p + 1, "../");\ |
128950f29e66
(rootrelativepath) [MSDOS]: Define, expanding to dynamic
Richard M. Stallman <rms@gnu.org>
parents:
4702
diff
changeset
|
32 strcpy (p + 4, rel);\ |
128950f29e66
(rootrelativepath) [MSDOS]: Define, expanding to dynamic
Richard M. Stallman <rms@gnu.org>
parents:
4702
diff
changeset
|
33 &res;}) |
128950f29e66
(rootrelativepath) [MSDOS]: Define, expanding to dynamic
Richard M. Stallman <rms@gnu.org>
parents:
4702
diff
changeset
|
34 #endif |
128950f29e66
(rootrelativepath) [MSDOS]: Define, expanding to dynamic
Richard M. Stallman <rms@gnu.org>
parents:
4702
diff
changeset
|
35 |
10198
aa59550d809f
Include program name in error messages.
David J. MacKenzie <djm@gnu.org>
parents:
9491
diff
changeset
|
36 char *malloc(), *realloc(); |
aa59550d809f
Include program name in error messages.
David J. MacKenzie <djm@gnu.org>
parents:
9491
diff
changeset
|
37 |
aa59550d809f
Include program name in error messages.
David J. MacKenzie <djm@gnu.org>
parents:
9491
diff
changeset
|
38 void yow(); |
aa59550d809f
Include program name in error messages.
David J. MacKenzie <djm@gnu.org>
parents:
9491
diff
changeset
|
39 void setup_yow(); |
aa59550d809f
Include program name in error messages.
David J. MacKenzie <djm@gnu.org>
parents:
9491
diff
changeset
|
40 |
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
7820
diff
changeset
|
41 int |
12 | 42 main (argc, argv) |
43 int argc; | |
44 char *argv[]; | |
45 { | |
46 FILE *fp; | |
47 char file[BUFSIZ]; | |
48 | |
49 if (argc > 2 && !strcmp (argv[1], "-f")) | |
50 strcpy (file, argv[2]); | |
51 else | |
52 #ifdef vms | |
443 | 53 sprintf (file, "%s%s", PATH_DATA, YOW_FILE); |
12 | 54 #else |
443 | 55 sprintf (file, "%s/%s", PATH_DATA, YOW_FILE); |
12 | 56 #endif |
57 | |
58 if ((fp = fopen(file, "r")) == NULL) { | |
10198
aa59550d809f
Include program name in error messages.
David J. MacKenzie <djm@gnu.org>
parents:
9491
diff
changeset
|
59 fprintf(stderr, "yow: "); |
12 | 60 perror(file); |
61 exit(1); | |
62 } | |
63 | |
64 /* initialize random seed */ | |
65 srand((int) (getpid() + time((long *) 0))); | |
66 | |
42 | 67 setup_yow(fp); |
12 | 68 yow(fp); |
69 fclose(fp); | |
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
7820
diff
changeset
|
70 return 0; |
12 | 71 } |
72 | |
42 | 73 static long len = -1; |
74 static long header_len; | |
75 | |
76 #define AVG_LEN 40 /* average length of a quotation */ | |
77 | |
78 /* Sets len and header_len */ | |
79 void | |
80 setup_yow(fp) | |
81 FILE *fp; | |
82 { | |
83 int c; | |
84 | |
85 /* Get length of file */ | |
86 /* Because the header (stuff before the first SEP) can be very long, | |
87 * thus biasing our search in favor of the first quotation in the file, | |
88 * we explicitly skip that. */ | |
89 while ((c = getc(fp)) != SEP) { | |
90 if (c == EOF) { | |
10198
aa59550d809f
Include program name in error messages.
David J. MacKenzie <djm@gnu.org>
parents:
9491
diff
changeset
|
91 fprintf(stderr, "yow: file contains no separators\n"); |
42 | 92 exit(2); |
93 } | |
94 } | |
95 header_len = ftell(fp); | |
96 if (header_len > AVG_LEN) | |
97 header_len -= AVG_LEN; /* allow the first quotation to appear */ | |
98 | |
99 if (fseek(fp, 0L, 2) == -1) { | |
10198
aa59550d809f
Include program name in error messages.
David J. MacKenzie <djm@gnu.org>
parents:
9491
diff
changeset
|
100 perror("yow"); |
42 | 101 exit(1); |
102 } | |
103 len = ftell(fp) - header_len; | |
104 } | |
105 | |
106 | |
107 /* go to a random place in the file and print the quotation there */ | |
12 | 108 void |
109 yow (fp) | |
110 FILE *fp; | |
111 { | |
112 long offset; | |
113 int c, i = 0; | |
42 | 114 char *buf; |
115 unsigned int bufsize; | |
12 | 116 |
42 | 117 offset = rand() % len + header_len; |
12 | 118 if (fseek(fp, offset, 0) == -1) { |
10198
aa59550d809f
Include program name in error messages.
David J. MacKenzie <djm@gnu.org>
parents:
9491
diff
changeset
|
119 perror("yow"); |
12 | 120 exit(1); |
121 } | |
122 | |
123 /* Read until SEP, read next line, print it. | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
443
diff
changeset
|
124 (Note that we will never print anything before the first separator.) |
12 | 125 If we hit EOF looking for the first SEP, just recurse. */ |
126 while ((c = getc(fp)) != SEP) | |
127 if (c == EOF) { | |
128 yow(fp); | |
129 return; | |
130 } | |
131 | |
132 /* Skip leading whitespace, then read in a quotation. | |
133 If we hit EOF before we find a non-whitespace char, recurse. */ | |
134 while (isspace(c = getc(fp))) | |
135 ; | |
136 if (c == EOF) { | |
137 yow(fp); | |
138 return; | |
139 } | |
42 | 140 |
141 bufsize = BUFSIZE; | |
142 buf = malloc(bufsize); | |
143 if (buf == (char *)0) { | |
10198
aa59550d809f
Include program name in error messages.
David J. MacKenzie <djm@gnu.org>
parents:
9491
diff
changeset
|
144 fprintf(stderr, "yow: virtual memory exhausted\n"); |
42 | 145 exit (3); |
146 } | |
147 | |
12 | 148 buf[i++] = c; |
149 while ((c = getc(fp)) != SEP && c != EOF) { | |
150 buf[i++] = c; | |
42 | 151 |
152 if (i == bufsize-1) { | |
12 | 153 /* Yow! Is this quotation too long yet? */ |
42 | 154 bufsize *= 2; |
155 buf = realloc(buf, bufsize); | |
156 if (buf == (char *)0) { | |
10198
aa59550d809f
Include program name in error messages.
David J. MacKenzie <djm@gnu.org>
parents:
9491
diff
changeset
|
157 fprintf(stderr, "yow: virtual memory exhausted\n"); |
42 | 158 exit (3); |
159 } | |
160 } | |
12 | 161 } |
162 buf[i++] = 0; | |
163 printf("%s\n", buf); | |
164 } | |
165 |