/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
/* All Rights Reserved */
/*
* Copyright (c) 1980 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*/
/*
* Copyright 2004 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
int
{
#if !defined(TEXT_DOMAIN)
#endif
(void) textdomain(TEXT_DOMAIN);
if (argc <= 1)
else
while (--argc > 0) {
exit(1);
}
}
return (0);
}
static void
{
line++;
ndel = 0;
for (p = in; *p; p++)
if (*p == delim)
ndel++;
if (eq++)
(void) printf(
gettext(" Spurious EQ, line %d\n"),
line);
if (totdel)
(void) printf(
gettext(" EQ in %c%c, line %d\n"),
if (eq == 0)
(void) printf(
gettext(" Spurious EN, line %d\n"),
line);
else
eq = 0;
if (totdel > 0)
(void) printf(
gettext(" EN in %c%c, line %d\n"),
start = 0;
for (p = in+5; *p; p++)
if (*p != ' ') {
if (*p == 'o' && *(p+1) == 'f')
delim = 0;
else
delim = *p;
break;
}
if (delim == 0)
(void) printf(
gettext(" Delim off, line %d\n"),
line);
else
(void) printf(
gettext(" New delims %c%c, line %d\n"),
}
(void) printf(
if (ndel == 0)
continue;
if (totdel%2) {
if (start == 0)
else {
(void) printf(
gettext(" %d line %c%c, lines %d-%d\n"),
}
} else {
if (start > 0) {
(void) printf(
gettext(" %d line %c%c, lines %d-%d\n"),
start = 0;
}
totdel = 0;
}
}
if (totdel)
if (eq)
}