2017-11-20 19:49:47 +00:00
|
|
|
/*-
|
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
1994-05-27 12:33:43 +00:00
|
|
|
* Copyright (c) 1980, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-27 12:33:43 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2001-12-11 22:54:36 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
#ifndef lint
|
1997-08-28 06:28:08 +00:00
|
|
|
static const char copyright[] =
|
1994-05-27 12:33:43 +00:00
|
|
|
"@(#) Copyright (c) 1980, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
2001-12-11 22:54:36 +00:00
|
|
|
#endif
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
#ifndef lint
|
2001-12-11 22:54:36 +00:00
|
|
|
static const char sccsid[] = "@(#)xstr.c 8.1 (Berkeley) 6/9/93";
|
1997-08-28 06:28:08 +00:00
|
|
|
#endif
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
2001-12-11 22:54:36 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <ctype.h>
|
1997-08-28 06:28:08 +00:00
|
|
|
#include <err.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <signal.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <string.h>
|
1997-08-28 06:28:08 +00:00
|
|
|
#include <unistd.h>
|
2001-12-11 22:54:36 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
#include "pathnames.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* xstr - extract and hash strings in a C program
|
|
|
|
*
|
|
|
|
* Bill Joy UCB
|
|
|
|
* November, 1978
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define ignore(a) ((void) a)
|
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static off_t tellpt;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static off_t mesgpt;
|
|
|
|
static char cstrings[] = "strings";
|
|
|
|
static char *strings = cstrings;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static int cflg;
|
|
|
|
static int vflg;
|
|
|
|
static int readstd;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static char lastchr(char *);
|
2001-12-11 22:54:36 +00:00
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static int fgetNUL(char *, int, FILE *);
|
|
|
|
static int istail(char *, char *);
|
|
|
|
static int octdigit(char);
|
|
|
|
static int xgetc(FILE *);
|
2001-12-11 22:54:36 +00:00
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static off_t hashit(char *, int);
|
|
|
|
static off_t yankstr(char **);
|
2001-12-11 22:54:36 +00:00
|
|
|
|
2002-03-22 01:42:45 +00:00
|
|
|
static void usage(void);
|
2001-12-11 22:54:36 +00:00
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static void flushsh(void);
|
|
|
|
static void found(int, off_t, char *);
|
|
|
|
static void inithash(void);
|
|
|
|
static void onintr(int);
|
|
|
|
static void process(const char *);
|
|
|
|
static void prstr(char *);
|
|
|
|
static void xsdotc(void);
|
1997-08-28 06:28:08 +00:00
|
|
|
|
|
|
|
int
|
2002-09-04 23:29:10 +00:00
|
|
|
main(int argc, char *argv[])
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
1997-08-28 06:28:08 +00:00
|
|
|
int c;
|
2008-05-13 09:42:03 +00:00
|
|
|
int fdesc;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
1997-08-28 06:28:08 +00:00
|
|
|
while ((c = getopt(argc, argv, "-cv")) != -1)
|
|
|
|
switch (c) {
|
|
|
|
case '-':
|
1994-05-27 12:33:43 +00:00
|
|
|
readstd++;
|
1997-08-28 06:28:08 +00:00
|
|
|
break;
|
1994-05-27 12:33:43 +00:00
|
|
|
case 'c':
|
|
|
|
cflg++;
|
1997-08-28 06:28:08 +00:00
|
|
|
break;
|
1994-05-27 12:33:43 +00:00
|
|
|
case 'v':
|
|
|
|
vflg++;
|
1997-08-28 06:28:08 +00:00
|
|
|
break;
|
1994-05-27 12:33:43 +00:00
|
|
|
default:
|
1997-08-28 06:28:08 +00:00
|
|
|
usage();
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
if (signal(SIGINT, SIG_IGN) == SIG_DFL)
|
|
|
|
signal(SIGINT, onintr);
|
1997-08-28 06:28:08 +00:00
|
|
|
if (cflg || (argc == 0 && !readstd))
|
1994-05-27 12:33:43 +00:00
|
|
|
inithash();
|
2008-05-13 09:42:03 +00:00
|
|
|
else {
|
|
|
|
strings = strdup(_PATH_TMP);
|
|
|
|
if (strings == NULL)
|
|
|
|
err(1, "strdup() failed");
|
|
|
|
fdesc = mkstemp(strings);
|
|
|
|
if (fdesc == -1)
|
|
|
|
err(1, "Unable to create temporary file");
|
|
|
|
close(fdesc);
|
|
|
|
}
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
while (readstd || argc > 0) {
|
|
|
|
if (freopen("x.c", "w", stdout) == NULL)
|
1997-08-28 06:28:08 +00:00
|
|
|
err(1, "x.c");
|
1994-05-27 12:33:43 +00:00
|
|
|
if (!readstd && freopen(argv[0], "r", stdin) == NULL)
|
1997-08-28 06:28:08 +00:00
|
|
|
err(2, "%s", argv[0]);
|
1994-05-27 12:33:43 +00:00
|
|
|
process("x.c");
|
|
|
|
if (readstd == 0)
|
|
|
|
argc--, argv++;
|
|
|
|
else
|
|
|
|
readstd = 0;
|
2016-04-15 22:31:22 +00:00
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
flushsh();
|
|
|
|
if (cflg == 0)
|
|
|
|
xsdotc();
|
|
|
|
if (strings[0] == '/')
|
|
|
|
ignore(unlink(strings));
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
1997-08-28 06:28:08 +00:00
|
|
|
static void
|
2002-09-04 23:29:10 +00:00
|
|
|
usage(void)
|
1997-08-28 06:28:08 +00:00
|
|
|
{
|
2005-05-21 10:14:11 +00:00
|
|
|
fprintf(stderr, "usage: xstr [-cv] [-] [file ...]\n");
|
1997-08-28 06:28:08 +00:00
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static char linebuf[BUFSIZ];
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static void
|
2002-09-04 23:29:10 +00:00
|
|
|
process(const char *name)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
char *cp;
|
2001-12-11 22:54:36 +00:00
|
|
|
int c;
|
|
|
|
int incomm = 0;
|
1994-05-27 12:33:43 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
printf("extern char\txstr[];\n");
|
|
|
|
for (;;) {
|
|
|
|
if (fgets(linebuf, sizeof linebuf, stdin) == NULL) {
|
1997-08-28 06:28:08 +00:00
|
|
|
if (ferror(stdin))
|
|
|
|
err(3, "%s", name);
|
1994-05-27 12:33:43 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (linebuf[0] == '#') {
|
|
|
|
if (linebuf[1] == ' ' && isdigit(linebuf[2]))
|
|
|
|
printf("#line%s", &linebuf[1]);
|
|
|
|
else
|
|
|
|
printf("%s", linebuf);
|
|
|
|
continue;
|
|
|
|
}
|
1997-08-28 06:28:08 +00:00
|
|
|
for (cp = linebuf; (c = *cp++);) switch (c) {
|
1995-05-30 06:41:30 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
case '"':
|
|
|
|
if (incomm)
|
|
|
|
goto def;
|
|
|
|
if ((ret = (int) yankstr(&cp)) == -1)
|
|
|
|
goto out;
|
|
|
|
printf("(&xstr[%d])", ret);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '\'':
|
|
|
|
if (incomm)
|
|
|
|
goto def;
|
|
|
|
putchar(c);
|
|
|
|
if (*cp)
|
|
|
|
putchar(*cp++);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '/':
|
|
|
|
if (incomm || *cp != '*')
|
|
|
|
goto def;
|
|
|
|
incomm = 1;
|
|
|
|
cp++;
|
|
|
|
printf("/*");
|
|
|
|
continue;
|
|
|
|
|
|
|
|
case '*':
|
|
|
|
if (incomm && *cp == '/') {
|
|
|
|
incomm = 0;
|
|
|
|
cp++;
|
|
|
|
printf("*/");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
goto def;
|
1995-05-30 06:41:30 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
def:
|
|
|
|
default:
|
|
|
|
putchar(c);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
if (ferror(stdout))
|
2001-12-11 22:54:36 +00:00
|
|
|
warn("x.c"), onintr(0);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static off_t
|
2002-09-04 23:29:10 +00:00
|
|
|
yankstr(char **cpp)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-12-11 22:54:36 +00:00
|
|
|
char *cp = *cpp;
|
|
|
|
int c, ch;
|
1994-05-27 12:33:43 +00:00
|
|
|
char dbuf[BUFSIZ];
|
2001-12-11 22:54:36 +00:00
|
|
|
char *dp = dbuf;
|
|
|
|
char *tp;
|
|
|
|
static char tmp[] = "b\bt\tr\rn\nf\f\\\\\"\"";
|
1994-05-27 12:33:43 +00:00
|
|
|
|
1997-08-28 06:28:08 +00:00
|
|
|
while ((c = *cp++)) {
|
2002-11-01 12:48:28 +00:00
|
|
|
if (dp == dbuf + sizeof(dbuf) - 3)
|
|
|
|
errx(1, "message too long");
|
1994-05-27 12:33:43 +00:00
|
|
|
switch (c) {
|
|
|
|
|
|
|
|
case '"':
|
|
|
|
cp++;
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
case '\\':
|
|
|
|
c = *cp++;
|
|
|
|
if (c == 0)
|
|
|
|
break;
|
|
|
|
if (c == '\n') {
|
1995-05-30 06:41:30 +00:00
|
|
|
if (fgets(linebuf, sizeof linebuf, stdin)
|
1994-05-27 12:33:43 +00:00
|
|
|
== NULL) {
|
1997-08-28 06:28:08 +00:00
|
|
|
if (ferror(stdin))
|
|
|
|
err(3, "x.c");
|
1994-05-27 12:33:43 +00:00
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
cp = linebuf;
|
|
|
|
continue;
|
|
|
|
}
|
2001-12-11 22:54:36 +00:00
|
|
|
for (tp = tmp; (ch = *tp++); tp++)
|
1994-05-27 12:33:43 +00:00
|
|
|
if (c == ch) {
|
|
|
|
c = *tp;
|
|
|
|
goto gotc;
|
|
|
|
}
|
|
|
|
if (!octdigit(c)) {
|
|
|
|
*dp++ = '\\';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
c -= '0';
|
|
|
|
if (!octdigit(*cp))
|
|
|
|
break;
|
|
|
|
c <<= 3, c += *cp++ - '0';
|
|
|
|
if (!octdigit(*cp))
|
|
|
|
break;
|
|
|
|
c <<= 3, c += *cp++ - '0';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
gotc:
|
|
|
|
*dp++ = c;
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
*cpp = --cp;
|
|
|
|
*dp = 0;
|
|
|
|
return (hashit(dbuf, 1));
|
|
|
|
}
|
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static int
|
2002-09-04 23:29:10 +00:00
|
|
|
octdigit(char c)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
return (isdigit(c) && c != '8' && c != '9');
|
|
|
|
}
|
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static void
|
2002-09-04 23:29:10 +00:00
|
|
|
inithash(void)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
char buf[BUFSIZ];
|
2001-12-11 22:54:36 +00:00
|
|
|
FILE *mesgread = fopen(strings, "r");
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
if (mesgread == NULL)
|
|
|
|
return;
|
|
|
|
for (;;) {
|
|
|
|
mesgpt = tellpt;
|
1997-08-28 06:28:08 +00:00
|
|
|
if (fgetNUL(buf, sizeof buf, mesgread) == 0)
|
1994-05-27 12:33:43 +00:00
|
|
|
break;
|
|
|
|
ignore(hashit(buf, 0));
|
|
|
|
}
|
|
|
|
ignore(fclose(mesgread));
|
|
|
|
}
|
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static int
|
2002-09-04 23:29:10 +00:00
|
|
|
fgetNUL(char *obuf, int rmdr, FILE *file)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-12-11 22:54:36 +00:00
|
|
|
int c;
|
|
|
|
char *buf = obuf;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
while (--rmdr > 0 && (c = xgetc(file)) != 0 && c != EOF)
|
|
|
|
*buf++ = c;
|
|
|
|
*buf++ = 0;
|
1997-08-28 06:28:08 +00:00
|
|
|
return ((feof(file) || ferror(file)) ? 0 : 1);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static int
|
2002-09-04 23:29:10 +00:00
|
|
|
xgetc(FILE *file)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
tellpt++;
|
|
|
|
return (getc(file));
|
|
|
|
}
|
|
|
|
|
|
|
|
#define BUCKETS 128
|
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static struct hash {
|
1994-05-27 12:33:43 +00:00
|
|
|
off_t hpt;
|
|
|
|
char *hstr;
|
|
|
|
struct hash *hnext;
|
|
|
|
short hnew;
|
|
|
|
} bucket[BUCKETS];
|
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static off_t
|
2002-09-04 23:29:10 +00:00
|
|
|
hashit(char *str, int new)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
int i;
|
2001-12-11 22:54:36 +00:00
|
|
|
struct hash *hp, *hp0;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
hp = hp0 = &bucket[lastchr(str) & 0177];
|
|
|
|
while (hp->hnext) {
|
|
|
|
hp = hp->hnext;
|
|
|
|
i = istail(str, hp->hstr);
|
|
|
|
if (i >= 0)
|
|
|
|
return (hp->hpt + i);
|
|
|
|
}
|
1997-08-28 06:28:08 +00:00
|
|
|
if ((hp = (struct hash *) calloc(1, sizeof (*hp))) == NULL)
|
|
|
|
errx(8, "calloc");
|
1994-05-27 12:33:43 +00:00
|
|
|
hp->hpt = mesgpt;
|
1997-08-28 06:28:08 +00:00
|
|
|
if (!(hp->hstr = strdup(str)))
|
|
|
|
err(1, NULL);
|
1994-05-27 12:33:43 +00:00
|
|
|
mesgpt += strlen(hp->hstr) + 1;
|
|
|
|
hp->hnext = hp0->hnext;
|
|
|
|
hp->hnew = new;
|
|
|
|
hp0->hnext = hp;
|
|
|
|
return (hp->hpt);
|
|
|
|
}
|
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static void
|
2002-09-04 23:29:10 +00:00
|
|
|
flushsh(void)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-12-11 22:54:36 +00:00
|
|
|
int i;
|
|
|
|
struct hash *hp;
|
|
|
|
FILE *mesgwrit;
|
|
|
|
int old = 0, new = 0;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
for (i = 0; i < BUCKETS; i++)
|
|
|
|
for (hp = bucket[i].hnext; hp != NULL; hp = hp->hnext)
|
|
|
|
if (hp->hnew)
|
|
|
|
new++;
|
|
|
|
else
|
|
|
|
old++;
|
|
|
|
if (new == 0 && old != 0)
|
|
|
|
return;
|
|
|
|
mesgwrit = fopen(strings, old ? "r+" : "w");
|
|
|
|
if (mesgwrit == NULL)
|
2004-07-15 04:56:41 +00:00
|
|
|
err(4, "%s", strings);
|
1994-05-27 12:33:43 +00:00
|
|
|
for (i = 0; i < BUCKETS; i++)
|
|
|
|
for (hp = bucket[i].hnext; hp != NULL; hp = hp->hnext) {
|
|
|
|
found(hp->hnew, hp->hpt, hp->hstr);
|
|
|
|
if (hp->hnew) {
|
|
|
|
fseek(mesgwrit, hp->hpt, 0);
|
|
|
|
ignore(fwrite(hp->hstr, strlen(hp->hstr) + 1, 1, mesgwrit));
|
|
|
|
if (ferror(mesgwrit))
|
1997-08-28 06:28:08 +00:00
|
|
|
err(4, "%s", strings);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (fclose(mesgwrit) == EOF)
|
1997-08-28 06:28:08 +00:00
|
|
|
err(4, "%s", strings);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static void
|
2002-09-04 23:29:10 +00:00
|
|
|
found(int new, off_t off, char *str)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
if (vflg == 0)
|
|
|
|
return;
|
|
|
|
if (!new)
|
|
|
|
fprintf(stderr, "found at %d:", (int) off);
|
|
|
|
else
|
|
|
|
fprintf(stderr, "new at %d:", (int) off);
|
|
|
|
prstr(str);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static void
|
2002-09-04 23:29:10 +00:00
|
|
|
prstr(char *cp)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-12-11 22:54:36 +00:00
|
|
|
int c;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
1997-08-28 06:28:08 +00:00
|
|
|
while ((c = (*cp++ & 0377)))
|
1994-05-27 12:33:43 +00:00
|
|
|
if (c < ' ')
|
|
|
|
fprintf(stderr, "^%c", c + '`');
|
|
|
|
else if (c == 0177)
|
|
|
|
fprintf(stderr, "^?");
|
|
|
|
else if (c > 0200)
|
|
|
|
fprintf(stderr, "\\%03o", c);
|
|
|
|
else
|
|
|
|
fprintf(stderr, "%c", c);
|
|
|
|
}
|
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static void
|
2002-09-04 23:29:10 +00:00
|
|
|
xsdotc(void)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-12-11 22:54:36 +00:00
|
|
|
FILE *strf = fopen(strings, "r");
|
|
|
|
FILE *xdotcf;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
if (strf == NULL)
|
1997-08-28 06:28:08 +00:00
|
|
|
err(5, "%s", strings);
|
1994-05-27 12:33:43 +00:00
|
|
|
xdotcf = fopen("xs.c", "w");
|
|
|
|
if (xdotcf == NULL)
|
1997-08-28 06:28:08 +00:00
|
|
|
err(6, "xs.c");
|
1994-05-27 12:33:43 +00:00
|
|
|
fprintf(xdotcf, "char\txstr[] = {\n");
|
|
|
|
for (;;) {
|
2001-12-11 22:54:36 +00:00
|
|
|
int i, c;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
for (i = 0; i < 8; i++) {
|
|
|
|
c = getc(strf);
|
|
|
|
if (ferror(strf)) {
|
1997-08-28 06:28:08 +00:00
|
|
|
warn("%s", strings);
|
2001-12-11 22:54:36 +00:00
|
|
|
onintr(0);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
if (feof(strf)) {
|
|
|
|
fprintf(xdotcf, "\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
fprintf(xdotcf, "0x%02x,", c);
|
|
|
|
}
|
|
|
|
fprintf(xdotcf, "\n");
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
fprintf(xdotcf, "};\n");
|
|
|
|
ignore(fclose(xdotcf));
|
|
|
|
ignore(fclose(strf));
|
|
|
|
}
|
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static char
|
2002-09-04 23:29:10 +00:00
|
|
|
lastchr(char *cp)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
while (cp[0] && cp[1])
|
|
|
|
cp++;
|
|
|
|
return (*cp);
|
|
|
|
}
|
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static int
|
2002-09-04 23:29:10 +00:00
|
|
|
istail(char *str, char *of)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-12-11 22:54:36 +00:00
|
|
|
int d = strlen(of) - strlen(str);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
if (d < 0 || strcmp(&of[d], str) != 0)
|
|
|
|
return (-1);
|
|
|
|
return (d);
|
|
|
|
}
|
|
|
|
|
2011-11-06 18:50:39 +00:00
|
|
|
static void
|
2002-09-04 23:29:10 +00:00
|
|
|
onintr(int dummy __unused)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
ignore(signal(SIGINT, SIG_IGN));
|
|
|
|
if (strings[0] == '/')
|
|
|
|
ignore(unlink(strings));
|
|
|
|
ignore(unlink("x.c"));
|
|
|
|
ignore(unlink("xs.c"));
|
|
|
|
exit(7);
|
|
|
|
}
|