home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <ctype.h>
- #include <getopt.h>
- #include <locale.h>
- #include <localeinfo.h>
-
- unsigned char *codename;
-
- struct response_info rinfo;
-
- unsigned char **lines[] =
- {
- (unsigned char **) &rinfo.yesexpr,
- (unsigned char **) &rinfo.noexpr,
- NULL
- };
-
- int parse (void);
-
- int
- main (int argc, char *argv[])
- {
- int i;
- unsigned char *outname = "LC_RESPONSE";
-
- while ((i = getopt (argc, argv, "o:")) != EOF)
- {
- switch (i)
- {
- case 'o':
- outname = optarg;
- break;
- }
- }
-
- if (argc - optind > 1)
- {
- (void) fprintf (stderr, "Usage: %s [-o out_file_name] [file]\n", argv[0]);
- return 3;
- }
- else if ((argc - optind) == 1)
- {
- if (freopen (argv[optind], "r", stdin) == NULL)
- {
- perror (argv[optind]);
- return 2;
- }
- }
-
- if (!parse ())
- return 1;
-
- return !write_out (outname);
- }
-
- void
- write_str (char *str, FILE * ofp)
- {
- short int slen = strlen (str) + 1;
-
- (void) fwrite (&slen, sizeof (slen), 1, ofp);
- (void) fwrite (str, sizeof (char), slen, ofp);
- }
-
- int
- write_out (outname)
- unsigned char *outname;
- {
- FILE *ofp = fopen (outname, "w");
-
- if (ofp == NULL)
- return 0;
-
- write_str (rinfo.yesexpr, ofp);
- write_str (rinfo.noexpr, ofp);
- #ifndef NOGUARD
- (void) fwrite (codename, sizeof (unsigned char), strlen (codename) + 1, ofp);
- #endif
- (void) fclose (ofp);
- return 1;
- }
-
- unsigned char iline[1024];
-
- int
- parse ()
- {
- int codename_seen = 0;
- int lineno = 0;
- unsigned char ***target = lines;
- unsigned char *cp;
-
- while (fgets (iline, sizeof (iline), stdin) != NULL)
- {
- lineno++;
- if (iline[0] == '#')
- continue;
- if ((cp = strchr (iline, '\n')) == NULL)
- {
- (void) fprintf (stderr, "Line %d: buffer overflow\n", lineno);
- return 0;
- }
- *cp = '\0';
- if (strlen (iline) == 0)
- continue;
- if (!codename_seen)
- {
- if (grok_codename ())
- {
- codename_seen = 1;
- continue;
- }
- else
- return 0;
- }
- **target++ = strdup (iline);
- if (*target == NULL)
- return 1;
- }
- return 0;
- }
-
- int
- grok_codename ()
- {
- unsigned char *cp = iline;
-
- while (*cp && *cp == ' ' && *cp == '\t')
- cp++;
- if (*cp == '\0')
- return 0;
- if (strncmp (cp, "codeset ", 8) && strncmp (cp, "codeset\t", 8))
- return 0;
- cp += 8;
- while (*cp && *cp == ' ' && *cp == '\t')
- cp++;
- if (*cp == '\0')
- return 0;
- codename = strdup (cp);
- return 1;
- }
-