1 /* tr -- a filter to translate characters
2 Copyright (C) 1991-2023 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 <https://www.gnu.org/licenses/>. */
17 /* Written by Jim Meyering */
22 #include <sys/types.h>
29 #include "safe-read.h"
30 #include "xbinary-io.h"
33 /* The official name of this program (e.g., no 'g' prefix). */
34 #define PROGRAM_NAME "tr"
36 #define AUTHORS proper_name ("Jim Meyering")
38 enum { N_CHARS
= UCHAR_MAX
+ 1 };
40 /* An unsigned integer type big enough to hold a repeat count or an
41 unsigned character. POSIX requires support for repeat counts as
42 high as 2**31 - 1. Since repeat counts might need to expand to
43 match the length of an argument string, we need at least size_t to
44 avoid arbitrary internal limits. It doesn't cost much to use
46 typedef uintmax_t count
;
48 /* The value for Spec_list->state that indicates to
49 get_next that it should initialize the tail pointer.
50 Its value should be as large as possible to avoid conflict
51 a valid value for the state field -- and that may be as
52 large as any valid repeat_count. */
53 #define BEGIN_STATE (UINTMAX_MAX - 1)
55 /* The value for Spec_list->state that indicates to
56 get_next that the element pointed to by Spec_list->tail is
57 being considered for the first time on this pass through the
58 list -- it indicates that get_next should make any necessary
60 #define NEW_ELEMENT (BEGIN_STATE + 1)
62 /* The maximum possible repeat count. Due to how the states are
63 implemented, it can be as much as BEGIN_STATE. */
64 #define REPEAT_COUNT_MAXIMUM BEGIN_STATE
66 /* The following (but not CC_NO_CLASS) are indices into the array of
67 valid character class strings. */
70 CC_ALNUM
= 0, CC_ALPHA
= 1, CC_BLANK
= 2, CC_CNTRL
= 3,
71 CC_DIGIT
= 4, CC_GRAPH
= 5, CC_LOWER
= 6, CC_PRINT
= 7,
72 CC_PUNCT
= 8, CC_SPACE
= 9, CC_UPPER
= 10, CC_XDIGIT
= 11,
76 /* Character class to which a character (returned by get_next) belonged;
77 but it is set only if the construct from which the character was obtained
78 was one of the character classes [:upper:] or [:lower:]. The value
79 is used only when translating and then, only to make sure that upper
80 and lower class constructs have the same relative positions in string1
82 enum Upper_Lower_class
89 /* The type of a List_element. See build_spec_list for more details. */
90 enum Range_element_type
99 /* One construct in one of tr's argument strings.
100 For example, consider the POSIX version of the classic tr command:
101 tr -cs 'a-zA-Z_' '[\n*]'
102 String1 has 3 constructs, two of which are ranges (a-z and A-Z),
103 and a single normal character, '_'. String2 has one construct. */
106 enum Range_element_type type
;
107 struct List_element
*next
;
110 unsigned char normal_char
;
113 unsigned char first_char
;
114 unsigned char last_char
;
117 enum Char_class char_class
;
118 unsigned char equiv_code
;
121 unsigned char the_repeated_char
;
129 /* Each of tr's argument strings is parsed into a form that is easier
130 to work with: a linked list of constructs (struct List_element).
131 Each Spec_list structure also encapsulates various attributes of
132 the corresponding argument string. The attributes are used mainly
133 to verify that the strings are valid in the context of any options
134 specified (like -s, -d, or -c). The main exception is the member
135 'tail', which is first used to construct the list. After construction,
136 it is used by get_next to save its state when traversing the list.
137 The member 'state' serves a similar function. */
140 /* Points to the head of the list of range elements.
141 The first struct is a dummy; its members are never used. */
142 struct List_element
*head
;
144 /* When appending, points to the last element. When traversing via
145 get_next(), points to the element to process next. Setting
146 Spec_list.state to the value BEGIN_STATE before calling get_next
147 signals get_next to initialize tail to point to head->next. */
148 struct List_element
*tail
;
150 /* Used to save state between calls to get_next. */
153 /* Length, in the sense that length ('a-z[:digit:]123abc')
154 is 42 ( = 26 + 10 + 6). */
157 /* The number of [c*] and [c*0] constructs that appear in this spec. */
158 size_t n_indefinite_repeats
;
160 /* If n_indefinite_repeats is nonzero, this points to the List_element
161 corresponding to the last [c*] or [c*0] construct encountered in
162 this spec. Otherwise it is undefined. */
163 struct List_element
*indefinite_repeat_element
;
165 /* True if this spec contains at least one equivalence
166 class construct e.g. [=c=]. */
167 bool has_equiv_class
;
169 /* True if this spec contains at least one character class
170 construct. E.g. [:digit:]. */
173 /* True if this spec contains at least one of the character class
174 constructs (all but upper and lower) that aren't allowed in s2. */
175 bool has_restricted_char_class
;
178 /* A representation for escaped string1 or string2. As a string is parsed,
179 any backslash-escaped characters (other than octal or \a, \b, \f, \n,
180 etc.) are marked as such in this structure by setting the corresponding
181 entry in the ESCAPED vector. */
189 /* Return nonzero if the Ith character of escaped string ES matches C
190 and is not escaped itself. */
192 es_match (struct E_string
const *es
, size_t i
, char c
)
194 return es
->s
[i
] == c
&& !es
->escaped
[i
];
197 /* When true, each sequence in the input of a repeated character
198 (call it c) is replaced (in the output) by a single occurrence of c
199 for every c in the squeeze set. */
200 static bool squeeze_repeats
= false;
202 /* When true, removes characters in the delete set from input. */
203 static bool delete = false;
205 /* Use the complement of set1 in place of set1. */
206 static bool complement
= false;
208 /* When tr is performing translation and string1 is longer than string2,
209 POSIX says that the result is unspecified. That gives the implementor
210 of a POSIX conforming version of tr two reasonable choices for the
211 semantics of this case.
213 * The BSD tr pads string2 to the length of string1 by
214 repeating the last character in string2.
216 * System V tr ignores characters in string1 that have no
217 corresponding character in string2. That is, string1 is effectively
218 truncated to the length of string2.
220 When nonzero, this flag causes GNU tr to imitate the behavior
221 of System V tr when translating with string1 longer than string2.
222 The default is to emulate BSD tr. This flag is ignored in modes where
223 no translation is performed. Emulating the System V tr
224 in this exceptional case causes the relatively common BSD idiom:
226 tr -cs A-Za-z0-9 '\012'
228 to break (it would convert only zero bytes, rather than all
229 non-alphanumerics, to newlines).
231 WARNING: This switch does not provide general BSD or System V
232 compatibility. For example, it doesn't disable the interpretation
233 of the POSIX constructs [:alpha:], [=c=], and [c*10], so if by
234 some unfortunate coincidence you use such constructs in scripts
235 expecting to use some other version of tr, the scripts will break. */
236 static bool truncate_set1
= false;
238 /* An alias for (!delete && non_option_args == 2).
239 It is set in main and used there and in validate(). */
240 static bool translating
;
242 static char io_buf
[BUFSIZ
];
244 static char const *const char_class_name
[] =
246 "alnum", "alpha", "blank", "cntrl", "digit", "graph",
247 "lower", "print", "punct", "space", "upper", "xdigit"
250 /* Array of boolean values. A character 'c' is a member of the
251 squeeze set if and only if in_squeeze_set[c] is true. The squeeze
252 set is defined by the last (possibly, the only) string argument
253 on the command line when the squeeze option is given. */
254 static bool in_squeeze_set
[N_CHARS
];
256 /* Array of boolean values. A character 'c' is a member of the
257 delete set if and only if in_delete_set[c] is true. The delete
258 set is defined by the first (or only) string argument on the
259 command line when the delete option is given. */
260 static bool in_delete_set
[N_CHARS
];
262 /* Array of character values defining the translation (if any) that
263 tr is to perform. Translation is performed only when there are
264 two specification strings and the delete switch is not given. */
265 static char xlate
[N_CHARS
];
267 static struct option
const long_options
[] =
269 {"complement", no_argument
, nullptr, 'c'},
270 {"delete", no_argument
, nullptr, 'd'},
271 {"squeeze-repeats", no_argument
, nullptr, 's'},
272 {"truncate-set1", no_argument
, nullptr, 't'},
273 {GETOPT_HELP_OPTION_DECL
},
274 {GETOPT_VERSION_OPTION_DECL
},
275 {nullptr, 0, nullptr, 0}
281 if (status
!= EXIT_SUCCESS
)
286 Usage: %s [OPTION]... STRING1 [STRING2]\n\
290 Translate, squeeze, and/or delete characters from standard input,\n\
291 writing to standard output. STRING1 and STRING2 specify arrays of\n\
292 characters ARRAY1 and ARRAY2 that control the action.\n\
294 -c, -C, --complement use the complement of ARRAY1\n\
295 -d, --delete delete characters in ARRAY1, do not translate\n\
296 -s, --squeeze-repeats replace each sequence of a repeated character\n\
297 that is listed in the last specified ARRAY,\n\
298 with a single occurrence of that character\n\
299 -t, --truncate-set1 first truncate ARRAY1 to length of ARRAY2\n\
301 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
302 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
305 ARRAYs are specified as strings of characters. Most represent themselves.\n\
306 Interpreted sequences are:\n\
308 \\NNN character with octal value NNN (1 to 3 octal digits)\n\
315 \\t horizontal tab\n\
319 CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order\n\
320 [CHAR*] in ARRAY2, copies of CHAR until length of ARRAY1\n\
321 [CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0\n\
322 [:alnum:] all letters and digits\n\
323 [:alpha:] all letters\n\
324 [:blank:] all horizontal whitespace\n\
325 [:cntrl:] all control characters\n\
326 [:digit:] all digits\n\
329 [:graph:] all printable characters, not including space\n\
330 [:lower:] all lower case letters\n\
331 [:print:] all printable characters, including space\n\
332 [:punct:] all punctuation characters\n\
333 [:space:] all horizontal or vertical whitespace\n\
334 [:upper:] all upper case letters\n\
335 [:xdigit:] all hexadecimal digits\n\
336 [=CHAR=] all characters which are equivalent to CHAR\n\
340 Translation occurs if -d is not given and both STRING1 and STRING2 appear.\n\
341 -t is only significant when translating. ARRAY2 is extended to length of\n\
342 ARRAY1 by repeating its last character as necessary. Excess characters\n\
343 of ARRAY2 are ignored. Character classes expand in unspecified order;\n\
344 while translating, [:lower:] and [:upper:] may be used in pairs to\n\
345 specify case conversion. Squeezing occurs after translation or deletion.\n\
347 emit_ancillary_info (PROGRAM_NAME
);
352 /* Return nonzero if the character C is a member of the
353 equivalence class containing the character EQUIV_CLASS. */
356 is_equiv_class_member (unsigned char equiv_class
, unsigned char c
)
358 return (equiv_class
== c
);
361 /* Return true if the character C is a member of the
362 character class CHAR_CLASS. */
366 is_char_class_member (enum Char_class char_class
, unsigned char c
)
373 result
= isalnum (c
);
376 result
= isalpha (c
);
379 result
= isblank (c
);
382 result
= iscntrl (c
);
385 result
= isdigit (c
);
388 result
= isgraph (c
);
391 result
= islower (c
);
394 result
= isprint (c
);
397 result
= ispunct (c
);
400 result
= isspace (c
);
403 result
= isupper (c
);
406 result
= isxdigit (c
);
416 es_free (struct E_string
*es
)
422 /* Perform the first pass over each range-spec argument S, converting all
423 \c and \ddd escapes to their one-byte representations. If an invalid
424 quote sequence is found print an error message and return false;
425 Otherwise set *ES to the resulting string and return true.
426 The resulting array of characters may contain zero-bytes;
427 however, on input, S is assumed to be null-terminated, and hence
428 cannot contain actual (non-escaped) zero bytes. */
431 unquote (char const *s
, struct E_string
*es
)
433 size_t len
= strlen (s
);
435 es
->s
= xmalloc (len
);
436 es
->escaped
= xcalloc (len
, sizeof es
->escaped
[0]);
439 for (unsigned int i
= 0; s
[i
]; i
++)
447 es
->escaped
[j
] = true;
483 oct_digit
= s
[i
+ 2] - '0';
484 if (0 <= oct_digit
&& oct_digit
<= 7)
486 c
= 8 * c
+ oct_digit
;
488 oct_digit
= s
[i
+ 2] - '0';
489 if (0 <= oct_digit
&& oct_digit
<= 7)
491 if (8 * c
+ oct_digit
< N_CHARS
)
493 c
= 8 * c
+ oct_digit
;
498 /* A 3-digit octal number larger than \377 won't
499 fit in 8 bits. So we stop when adding the
500 next digit would put us over the limit and
501 give a warning about the ambiguity. POSIX
502 isn't clear on this, and we interpret this
503 lack of clarity as meaning the resulting behavior
504 is undefined, which means we're allowed to issue
506 error (0, 0, _("warning: the ambiguous octal escape\
507 \\%c%c%c is being\n\tinterpreted as the 2-byte sequence \\0%c%c, %c"),
508 s
[i
], s
[i
+ 1], s
[i
+ 2],
509 s
[i
], s
[i
+ 1], s
[i
+ 2]);
515 error (0, 0, _("warning: an unescaped backslash "
516 "at end of string is not portable"));
517 /* POSIX is not clear about this. */
518 es
->escaped
[j
] = false;
538 /* If CLASS_STR is a valid character class string, return its index
539 in the global char_class_name array. Otherwise, return CC_NO_CLASS. */
542 static enum Char_class
543 look_up_char_class (char const *class_str
, size_t len
)
547 for (i
= 0; i
< ARRAY_CARDINALITY (char_class_name
); i
++)
548 if (STREQ_LEN (class_str
, char_class_name
[i
], len
)
549 && strlen (char_class_name
[i
]) == len
)
554 /* Return a newly allocated string with a printable version of C.
555 This function is used solely for formatting error messages. */
558 make_printable_char (unsigned char c
)
560 char *buf
= xmalloc (5);
569 sprintf (buf
, "\\%03o", c
);
574 /* Return a newly allocated copy of S which is suitable for printing.
575 LEN is the number of characters in S. Most non-printing
576 (isprint) characters are represented by a backslash followed by
577 3 octal digits. However, the characters represented by \c escapes
578 where c is one of [abfnrtv] are represented by their 2-character \c
579 sequences. This function is used solely for printing error messages. */
582 make_printable_str (char const *s
, size_t len
)
584 /* Worst case is that every character expands to a backslash
585 followed by a 3-character octal escape sequence. */
586 char *printable_buf
= xnmalloc (len
+ 1, 4);
587 char *p
= printable_buf
;
589 for (size_t i
= 0; i
< len
; i
++)
592 char const *tmp
= nullptr;
593 unsigned char c
= s
[i
];
628 sprintf (buf
, "\\%03o", c
);
634 return printable_buf
;
637 /* Append a newly allocated structure representing a
638 character C to the specification list LIST. */
641 append_normal_char (struct Spec_list
*list
, unsigned char c
)
643 struct List_element
*new = xmalloc (sizeof *new);
645 new->type
= RE_NORMAL_CHAR
;
646 new->u
.normal_char
= c
;
647 list
->tail
->next
= new;
651 /* Append a newly allocated structure representing the range
652 of characters from FIRST to LAST to the specification list LIST.
653 Return false if LAST precedes FIRST in the collating sequence,
654 true otherwise. This means that '[c-c]' is acceptable. */
657 append_range (struct Spec_list
*list
, unsigned char first
, unsigned char last
)
661 char *tmp1
= make_printable_char (first
);
662 char *tmp2
= make_printable_char (last
);
665 _("range-endpoints of '%s-%s' are in reverse collating sequence order"),
671 struct List_element
*new = xmalloc (sizeof *new);
673 new->type
= RE_RANGE
;
674 new->u
.range
.first_char
= first
;
675 new->u
.range
.last_char
= last
;
676 list
->tail
->next
= new;
681 /* If CHAR_CLASS_STR is a valid character class string, append a
682 newly allocated structure representing that character class to the end
683 of the specification list LIST and return true. If CHAR_CLASS_STR is not
684 a valid string return false. */
687 append_char_class (struct Spec_list
*list
,
688 char const *char_class_str
, size_t len
)
690 enum Char_class char_class
= look_up_char_class (char_class_str
, len
);
691 if (char_class
== CC_NO_CLASS
)
693 struct List_element
*new = xmalloc (sizeof *new);
695 new->type
= RE_CHAR_CLASS
;
696 new->u
.char_class
= char_class
;
697 list
->tail
->next
= new;
702 /* Append a newly allocated structure representing a [c*n]
703 repeated character construct to the specification list LIST.
704 THE_CHAR is the single character to be repeated, and REPEAT_COUNT
705 is a non-negative repeat count. */
708 append_repeated_char (struct Spec_list
*list
, unsigned char the_char
,
711 struct List_element
*new = xmalloc (sizeof *new);
713 new->type
= RE_REPEATED_CHAR
;
714 new->u
.repeated_char
.the_repeated_char
= the_char
;
715 new->u
.repeated_char
.repeat_count
= repeat_count
;
716 list
->tail
->next
= new;
720 /* Given a string, EQUIV_CLASS_STR, from a [=str=] context and
721 the length of that string, LEN, if LEN is exactly one, append
722 a newly allocated structure representing the specified
723 equivalence class to the specification list, LIST and return true.
724 If LEN is not 1, return false. */
727 append_equiv_class (struct Spec_list
*list
,
728 char const *equiv_class_str
, size_t len
)
733 struct List_element
*new = xmalloc (sizeof *new);
735 new->type
= RE_EQUIV_CLASS
;
736 new->u
.equiv_code
= *equiv_class_str
;
737 list
->tail
->next
= new;
742 /* Search forward starting at START_IDX for the 2-char sequence
743 (PRE_BRACKET_CHAR,']') in the string P of length P_LEN. If such
744 a sequence is found, set *RESULT_IDX to the index of the first
745 character and return true. Otherwise return false. P may contain
749 find_closing_delim (const struct E_string
*es
, size_t start_idx
,
750 char pre_bracket_char
, size_t *result_idx
)
752 for (size_t i
= start_idx
; i
< es
->len
- 1; i
++)
753 if (es
->s
[i
] == pre_bracket_char
&& es
->s
[i
+ 1] == ']'
754 && !es
->escaped
[i
] && !es
->escaped
[i
+ 1])
762 /* Parse the bracketed repeat-char syntax. If the P_LEN characters
763 beginning with P[ START_IDX ] comprise a valid [c*n] construct,
764 then set *CHAR_TO_REPEAT, *REPEAT_COUNT, and *CLOSING_BRACKET_IDX
765 and return zero. If the second character following
766 the opening bracket is not '*' or if no closing bracket can be
767 found, return -1. If a closing bracket is found and the
768 second char is '*', but the string between the '*' and ']' isn't
769 empty, an octal number, or a decimal number, print an error message
773 find_bracketed_repeat (const struct E_string
*es
, size_t start_idx
,
774 unsigned char *char_to_repeat
, count
*repeat_count
,
775 size_t *closing_bracket_idx
)
777 affirm (start_idx
+ 1 < es
->len
);
778 if (!es_match (es
, start_idx
+ 1, '*'))
781 for (size_t i
= start_idx
+ 2; i
< es
->len
&& !es
->escaped
[i
]; i
++)
785 size_t digit_str_len
= i
- start_idx
- 2;
787 *char_to_repeat
= es
->s
[start_idx
];
788 if (digit_str_len
== 0)
790 /* We've matched [c*] -- no explicit repeat count. */
795 /* Here, we have found [c*s] where s should be a string
796 of octal (if it starts with '0') or decimal digits. */
797 char const *digit_str
= &es
->s
[start_idx
+ 2];
799 if ((xstrtoumax (digit_str
, &d_end
, *digit_str
== '0' ? 8 : 10,
800 repeat_count
, nullptr)
802 || REPEAT_COUNT_MAXIMUM
< *repeat_count
803 || digit_str
+ digit_str_len
!= d_end
)
805 char *tmp
= make_printable_str (digit_str
, digit_str_len
);
807 _("invalid repeat count %s in [c*n] construct"),
813 *closing_bracket_idx
= i
;
817 return -1; /* No bracket found. */
820 /* Return true if the string at ES->s[IDX] matches the regular
821 expression '\*[0-9]*]', false otherwise. The string does not
822 match if any of its characters are escaped. */
826 star_digits_closebracket (const struct E_string
*es
, size_t idx
)
828 if (!es_match (es
, idx
, '*'))
831 for (size_t i
= idx
+ 1; i
< es
->len
; i
++)
832 if (!ISDIGIT (to_uchar (es
->s
[i
])) || es
->escaped
[i
])
833 return es_match (es
, i
, ']');
837 /* Convert string UNESCAPED_STRING (which has been preprocessed to
838 convert backslash-escape sequences) of length LEN characters into
839 a linked list of the following 5 types of constructs:
840 - [:str:] Character class where 'str' is one of the 12 valid strings.
841 - [=c=] Equivalence class where 'c' is any single character.
842 - [c*n] Repeat the single character 'c' 'n' times. n may be omitted.
843 However, if 'n' is present, it must be a non-negative octal or
845 - r-s Range of characters from 'r' to 's'. The second endpoint must
846 not precede the first in the current collating sequence.
847 - c Any other character is interpreted as itself. */
850 build_spec_list (const struct E_string
*es
, struct Spec_list
*result
)
852 char const *p
= es
->s
;
854 /* The main for-loop below recognizes the 4 multi-character constructs.
855 A character that matches (in its context) none of the multi-character
856 constructs is classified as 'normal'. Since all multi-character
857 constructs have at least 3 characters, any strings of length 2 or
858 less are composed solely of normal characters. Hence, the index of
859 the outer for-loop runs only as far as LEN-2. */
861 for (i
= 0; i
+ 2 < es
->len
; /* empty */)
863 if (es_match (es
, i
, '['))
865 bool matched_multi_char_construct
;
866 size_t closing_bracket_idx
;
867 unsigned char char_to_repeat
;
871 matched_multi_char_construct
= true;
872 if (es_match (es
, i
+ 1, ':') || es_match (es
, i
+ 1, '='))
874 size_t closing_delim_idx
;
876 if (find_closing_delim (es
, i
+ 2, p
[i
+ 1], &closing_delim_idx
))
878 size_t opnd_str_len
= closing_delim_idx
- 1 - (i
+ 2) + 1;
879 char const *opnd_str
= p
+ i
+ 2;
881 if (opnd_str_len
== 0)
884 error (0, 0, _("missing character class name '[::]'"));
887 _("missing equivalence class character '[==]'"));
893 /* FIXME: big comment. */
894 if (!append_char_class (result
, opnd_str
, opnd_str_len
))
896 if (star_digits_closebracket (es
, i
+ 2))
897 goto try_bracketed_repeat
;
900 char *tmp
= make_printable_str (opnd_str
,
902 error (0, 0, _("invalid character class %s"),
911 /* FIXME: big comment. */
912 if (!append_equiv_class (result
, opnd_str
, opnd_str_len
))
914 if (star_digits_closebracket (es
, i
+ 2))
915 goto try_bracketed_repeat
;
918 char *tmp
= make_printable_str (opnd_str
,
921 _("%s: equivalence class operand must be a single character"),
929 i
= closing_delim_idx
+ 2;
932 /* Else fall through. This could be [:*] or [=*]. */
935 try_bracketed_repeat
:
937 /* Determine whether this is a bracketed repeat range
938 matching the RE \[.\*(dec_or_oct_number)?]. */
939 err
= find_bracketed_repeat (es
, i
+ 1, &char_to_repeat
,
941 &closing_bracket_idx
);
944 append_repeated_char (result
, char_to_repeat
, repeat_count
);
945 i
= closing_bracket_idx
+ 1;
949 matched_multi_char_construct
= false;
953 /* Found a string that looked like [c*n] but the
954 numeric part was invalid. */
958 if (matched_multi_char_construct
)
961 /* We reach this point if P does not match [:str:], [=c=],
962 [c*n], or [c*]. Now, see if P looks like a range '[-c'
963 (from '[' to 'c'). */
966 /* Look ahead one char for ranges like a-z. */
967 if (es_match (es
, i
+ 1, '-'))
969 if (!append_range (result
, p
[i
], p
[i
+ 2]))
975 append_normal_char (result
, p
[i
]);
980 /* Now handle the (2 or fewer) remaining characters p[i]..p[es->len - 1]. */
981 for (; i
< es
->len
; i
++)
982 append_normal_char (result
, p
[i
]);
987 /* Advance past the current construct.
988 S->tail must be non-null. */
990 skip_construct (struct Spec_list
*s
)
992 s
->tail
= s
->tail
->next
;
993 s
->state
= NEW_ELEMENT
;
996 /* Given a Spec_list S (with its saved state implicit in the values
997 of its members 'tail' and 'state'), return the next single character
998 in the expansion of S's constructs. If the last character of S was
999 returned on the previous call or if S was empty, this function
1000 returns -1. For example, successive calls to get_next where S
1001 represents the spec-string 'a-d[y*3]' will return the sequence
1002 of values a, b, c, d, y, y, y, -1. Finally, if the construct from
1003 which the returned character comes is [:upper:] or [:lower:], the
1004 parameter CLASS is given a value to indicate which it was. Otherwise
1005 CLASS is set to UL_NONE. This value is used only when constructing
1006 the translation table to verify that any occurrences of upper and
1007 lower class constructs in the spec-strings appear in the same relative
1011 get_next (struct Spec_list
*s
, enum Upper_Lower_class
*class)
1013 struct List_element
*p
;
1020 if (s
->state
== BEGIN_STATE
)
1022 s
->tail
= s
->head
->next
;
1023 s
->state
= NEW_ELEMENT
;
1032 case RE_NORMAL_CHAR
:
1033 return_val
= p
->u
.normal_char
;
1034 s
->state
= NEW_ELEMENT
;
1039 if (s
->state
== NEW_ELEMENT
)
1040 s
->state
= p
->u
.range
.first_char
;
1043 return_val
= s
->state
;
1044 if (s
->state
== p
->u
.range
.last_char
)
1047 s
->state
= NEW_ELEMENT
;
1054 switch (p
->u
.char_class
)
1067 if (s
->state
== NEW_ELEMENT
)
1069 for (i
= 0; i
< N_CHARS
; i
++)
1070 if (is_char_class_member (p
->u
.char_class
, i
))
1072 affirm (i
< N_CHARS
);
1075 assure (is_char_class_member (p
->u
.char_class
, s
->state
));
1076 return_val
= s
->state
;
1077 for (i
= s
->state
+ 1; i
< N_CHARS
; i
++)
1078 if (is_char_class_member (p
->u
.char_class
, i
))
1085 s
->state
= NEW_ELEMENT
;
1089 case RE_EQUIV_CLASS
:
1090 /* FIXME: this assumes that each character is alone in its own
1091 equivalence class (which appears to be correct for my
1092 LC_COLLATE. But I don't know of any function that allows
1093 one to determine a character's equivalence class. */
1095 return_val
= p
->u
.equiv_code
;
1096 s
->state
= NEW_ELEMENT
;
1100 case RE_REPEATED_CHAR
:
1101 /* Here, a repeat count of n == 0 means don't repeat at all. */
1102 if (p
->u
.repeated_char
.repeat_count
== 0)
1105 s
->state
= NEW_ELEMENT
;
1106 return_val
= get_next (s
, class);
1110 if (s
->state
== NEW_ELEMENT
)
1115 return_val
= p
->u
.repeated_char
.the_repeated_char
;
1116 if (s
->state
== p
->u
.repeated_char
.repeat_count
)
1119 s
->state
= NEW_ELEMENT
;
1131 /* This is a minor kludge. This function is called from
1132 get_spec_stats to determine the cardinality of a set derived
1133 from a complemented string. It's a kludge in that some of the
1134 same operations are (duplicated) performed in set_initialize. */
1137 card_of_complement (struct Spec_list
*s
)
1140 int cardinality
= N_CHARS
;
1141 bool in_set
[N_CHARS
] = { 0, };
1143 s
->state
= BEGIN_STATE
;
1144 while ((c
= get_next (s
, nullptr)) != -1)
1146 cardinality
-= (!in_set
[c
]);
1152 /* Discard the lengths associated with a case conversion,
1153 as using the actual number of upper or lower case characters
1154 is problematic when they don't match in some locales.
1155 Also ensure the case conversion classes in string2 are
1156 aligned correctly with those in string1.
1157 Note POSIX says the behavior of 'tr "[:upper:]" "[:upper:]"'
1158 is undefined. Therefore we allow it (unlike Solaris)
1159 and treat it as a no-op. */
1162 validate_case_classes (struct Spec_list
*s1
, struct Spec_list
*s2
)
1168 MAYBE_UNUSED count old_s1_len
= s1
->length
, old_s2_len
= s2
->length
;
1169 struct List_element
*s1_tail
= s1
->tail
;
1170 struct List_element
*s2_tail
= s2
->tail
;
1171 bool s1_new_element
= true;
1172 bool s2_new_element
= true;
1174 if (complement
|| !s2
->has_char_class
)
1177 for (int i
= 0; i
< N_CHARS
; i
++)
1185 s1
->state
= BEGIN_STATE
;
1186 s2
->state
= BEGIN_STATE
;
1188 while (c1
!= -1 && c2
!= -1)
1190 enum Upper_Lower_class class_s1
, class_s2
;
1192 c1
= get_next (s1
, &class_s1
);
1193 c2
= get_next (s2
, &class_s2
);
1195 /* If c2 transitions to a new case class, then
1196 c1 must also transition at the same time. */
1197 if (s2_new_element
&& class_s2
!= UL_NONE
1198 && !(s1_new_element
&& class_s1
!= UL_NONE
))
1199 error (EXIT_FAILURE
, 0,
1200 _("misaligned [:upper:] and/or [:lower:] construct"));
1202 /* If case converting, quickly skip over the elements. */
1203 if (class_s2
!= UL_NONE
)
1205 skip_construct (s1
);
1206 skip_construct (s2
);
1207 /* Discount insignificant/problematic lengths. */
1208 s1
->length
-= (class_s1
== UL_UPPER
? n_upper
: n_lower
) - 1;
1209 s2
->length
-= (class_s2
== UL_UPPER
? n_upper
: n_lower
) - 1;
1212 s1_new_element
= s1
->state
== NEW_ELEMENT
; /* Next element is new. */
1213 s2_new_element
= s2
->state
== NEW_ELEMENT
; /* Next element is new. */
1216 affirm (old_s1_len
>= s1
->length
&& old_s2_len
>= s2
->length
);
1222 /* Gather statistics about the spec-list S in preparation for the tests
1223 in validate that determine the consistency of the specs. This function
1224 is called at most twice; once for string1, and again for any string2.
1225 LEN_S1 < 0 indicates that this is the first call and that S represents
1226 string1. When LEN_S1 >= 0, it is the length of the expansion of the
1227 constructs in string1, and we can use its value to resolve any
1228 indefinite repeat construct in S (which represents string2). Hence,
1229 this function has the side-effect that it converts a valid [c*]
1230 construct in string2 to [c*n] where n is large enough (or 0) to give
1231 string2 the same length as string1. For example, with the command
1232 tr a-z 'A[\n*]Z' on the second call to get_spec_stats, LEN_S1 would
1233 be 26 and S (representing string2) would be converted to 'A[\n*24]Z'. */
1236 get_spec_stats (struct Spec_list
*s
)
1238 struct List_element
*p
;
1241 s
->n_indefinite_repeats
= 0;
1242 s
->has_equiv_class
= false;
1243 s
->has_restricted_char_class
= false;
1244 s
->has_char_class
= false;
1245 for (p
= s
->head
->next
; p
; p
= p
->next
)
1252 case RE_NORMAL_CHAR
:
1257 affirm (p
->u
.range
.last_char
>= p
->u
.range
.first_char
);
1258 len
= p
->u
.range
.last_char
- p
->u
.range
.first_char
+ 1;
1262 s
->has_char_class
= true;
1263 for (int i
= 0; i
< N_CHARS
; i
++)
1264 if (is_char_class_member (p
->u
.char_class
, i
))
1266 switch (p
->u
.char_class
)
1272 s
->has_restricted_char_class
= true;
1277 case RE_EQUIV_CLASS
:
1278 for (int i
= 0; i
< N_CHARS
; i
++)
1279 if (is_equiv_class_member (p
->u
.equiv_code
, i
))
1281 s
->has_equiv_class
= true;
1284 case RE_REPEATED_CHAR
:
1285 if (p
->u
.repeated_char
.repeat_count
> 0)
1286 len
= p
->u
.repeated_char
.repeat_count
;
1289 s
->indefinite_repeat_element
= p
;
1290 ++(s
->n_indefinite_repeats
);
1298 /* Check for arithmetic overflow in computing length. Also, reject
1299 any length greater than the maximum repeat count, in case the
1300 length is later used to compute the repeat count for an
1301 indefinite element. */
1302 new_length
= length
+ len
;
1303 if (! (length
<= new_length
&& new_length
<= REPEAT_COUNT_MAXIMUM
))
1304 error (EXIT_FAILURE
, 0, _("too many characters in set"));
1305 length
= new_length
;
1312 get_s1_spec_stats (struct Spec_list
*s1
)
1314 get_spec_stats (s1
);
1316 s1
->length
= card_of_complement (s1
);
1320 get_s2_spec_stats (struct Spec_list
*s2
, count len_s1
)
1322 get_spec_stats (s2
);
1323 if (len_s1
>= s2
->length
&& s2
->n_indefinite_repeats
== 1)
1325 s2
->indefinite_repeat_element
->u
.repeated_char
.repeat_count
=
1326 len_s1
- s2
->length
;
1327 s2
->length
= len_s1
;
1332 spec_init (struct Spec_list
*spec_list
)
1334 struct List_element
*new = xmalloc (sizeof *new);
1335 spec_list
->head
= spec_list
->tail
= new;
1336 spec_list
->head
->next
= nullptr;
1339 /* This function makes two passes over the argument string S. The first
1340 one converts all \c and \ddd escapes to their one-byte representations.
1341 The second constructs a linked specification list, SPEC_LIST, of the
1342 characters and constructs that comprise the argument string. If either
1343 of these passes detects an error, this function returns false. */
1346 parse_str (char const *s
, struct Spec_list
*spec_list
)
1349 bool ok
= unquote (s
, &es
) && build_spec_list (&es
, spec_list
);
1354 /* Given two specification lists, S1 and S2, and assuming that
1355 S1->length > S2->length, append a single [c*n] element to S2 where c
1356 is the last character in the expansion of S2 and n is the difference
1357 between the two lengths.
1358 Upon successful completion, S2->length is set to S1->length. The only
1359 way this function can fail to make S2 as long as S1 is when S2 has
1360 zero-length, since in that case, there is no last character to repeat.
1361 So S2->length is required to be at least 1. */
1364 string2_extend (const struct Spec_list
*s1
, struct Spec_list
*s2
)
1366 struct List_element
*p
;
1367 unsigned char char_to_repeat
;
1369 affirm (translating
);
1370 affirm (s1
->length
> s2
->length
);
1371 affirm (s2
->length
> 0);
1376 case RE_NORMAL_CHAR
:
1377 char_to_repeat
= p
->u
.normal_char
;
1380 char_to_repeat
= p
->u
.range
.last_char
;
1383 /* Note BSD allows extending of classes in string2. For example:
1384 tr '[:upper:]0-9' '[:lower:]'
1385 That's not portable however, contradicts POSIX and is dependent
1386 on your collating sequence. */
1387 error (EXIT_FAILURE
, 0,
1388 _("when translating with string1 longer than string2,\n"
1389 "the latter string must not end with a character class"));
1391 case RE_REPEATED_CHAR
:
1392 char_to_repeat
= p
->u
.repeated_char
.the_repeated_char
;
1395 case RE_EQUIV_CLASS
:
1396 /* This shouldn't happen, because validate exits with an error
1397 if it finds an equiv class in string2 when translating. */
1404 append_repeated_char (s2
, char_to_repeat
, s1
->length
- s2
->length
);
1405 s2
->length
= s1
->length
;
1408 /* Return true if S is a non-empty list in which exactly one
1409 character (but potentially, many instances of it) appears.
1410 E.g., [X*] or xxxxxxxx. */
1413 homogeneous_spec_list (struct Spec_list
*s
)
1417 s
->state
= BEGIN_STATE
;
1419 if ((b
= get_next (s
, nullptr)) == -1)
1422 while ((c
= get_next (s
, nullptr)) != -1)
1429 /* Die with an error message if S1 and S2 describe strings that
1430 are not valid with the given command line switches.
1431 A side effect of this function is that if a valid [c*] or
1432 [c*0] construct appears in string2, it is converted to [c*n]
1433 with a value for n that makes s2->length == s1->length. By
1434 the same token, if the --truncate-set1 option is not
1435 given, S2 may be extended. */
1438 validate (struct Spec_list
*s1
, struct Spec_list
*s2
)
1440 get_s1_spec_stats (s1
);
1441 if (s1
->n_indefinite_repeats
> 0)
1442 error (EXIT_FAILURE
, 0,
1443 _("the [c*] repeat construct may not appear in string1"));
1447 get_s2_spec_stats (s2
, s1
->length
);
1449 if (s2
->n_indefinite_repeats
> 1)
1450 error (EXIT_FAILURE
, 0,
1451 _("only one [c*] repeat construct may appear in string2"));
1455 if (s2
->has_equiv_class
)
1456 error (EXIT_FAILURE
, 0,
1457 _("[=c=] expressions may not appear in string2"
1458 " when translating"));
1460 if (s2
->has_restricted_char_class
)
1461 error (EXIT_FAILURE
, 0,
1462 _("when translating, the only character classes"
1463 " that may appear in\n"
1464 "string2 are 'upper' and 'lower'"));
1466 validate_case_classes (s1
, s2
);
1468 if (s1
->length
> s2
->length
)
1472 /* string2 must be non-empty unless --truncate-set1 is
1473 given or string1 is empty. */
1475 if (s2
->length
== 0)
1476 error (EXIT_FAILURE
, 0,
1477 _("when not truncating set1,"
1478 " string2 must be non-empty"));
1479 string2_extend (s1
, s2
);
1483 if (complement
&& s1
->has_char_class
1484 && ! (s2
->length
== s1
->length
&& homogeneous_spec_list (s2
)))
1485 error (EXIT_FAILURE
, 0,
1486 _("when translating with complemented character classes,\n"
1487 "string2 must map all characters in the domain to one"));
1490 /* Not translating. */
1492 if (s2
->n_indefinite_repeats
> 0)
1493 error (EXIT_FAILURE
, 0,
1494 _("the [c*] construct may appear in string2"
1495 " only when translating"));
1500 /* Read buffers of SIZE bytes via the function READER (if READER is
1501 null, read from stdin) until EOF. When non-null, READER is either
1502 read_and_delete or read_and_xlate. After each buffer is read, it is
1503 processed and written to stdout. The buffers are processed so that
1504 multiple consecutive occurrences of the same character in the input
1505 stream are replaced by a single occurrence of that character if the
1506 character is in the squeeze set. */
1509 squeeze_filter (char *buf
, size_t size
, size_t (*reader
) (char *, size_t))
1511 /* A value distinct from any character that may have been stored in a
1512 buffer as the result of a block-read in the function squeeze_filter. */
1513 const int NOT_A_CHAR
= INT_MAX
;
1515 int char_to_squeeze
= NOT_A_CHAR
;
1523 nr
= reader (buf
, size
);
1531 if (char_to_squeeze
== NOT_A_CHAR
)
1534 /* Here, by being a little tricky, we can get a significant
1535 performance increase in most cases when the input is
1536 reasonably large. Since tr will modify the input only
1537 if two consecutive (and identical) input characters are
1538 in the squeeze set, we can step by two through the data
1539 when searching for a character in the squeeze set. This
1540 means there may be a little more work in a few cases and
1541 perhaps twice as much work in the worst cases where most
1542 of the input is removed by squeezing repeats. But most
1543 uses of this functionality seem to remove less than 20-30%
1545 for (; i
< nr
&& !in_squeeze_set
[to_uchar (buf
[i
])]; i
+= 2)
1548 /* There is a special case when i == nr and we've just
1549 skipped a character (the last one in buf) that is in
1551 if (i
== nr
&& in_squeeze_set
[to_uchar (buf
[i
- 1])])
1555 out_len
= nr
- begin
;
1558 char_to_squeeze
= buf
[i
];
1559 /* We're about to output buf[begin..i]. */
1560 out_len
= i
- begin
+ 1;
1562 /* But since we stepped by 2 in the loop above,
1563 out_len may be one too large. */
1564 if (i
> 0 && buf
[i
- 1] == char_to_squeeze
)
1567 /* Advance i to the index of first character to be
1568 considered when looking for a char different from
1573 && fwrite (&buf
[begin
], 1, out_len
, stdout
) != out_len
)
1574 error (EXIT_FAILURE
, errno
, _("write error"));
1577 if (char_to_squeeze
!= NOT_A_CHAR
)
1579 /* Advance i to index of first char != char_to_squeeze
1580 (or to nr if all the rest of the characters in this
1581 buffer are the same as char_to_squeeze). */
1582 for (; i
< nr
&& buf
[i
] == char_to_squeeze
; i
++)
1585 char_to_squeeze
= NOT_A_CHAR
;
1586 /* If (i >= nr) we've squeezed the last character in this buffer.
1587 So now we have to read a new buffer and continue comparing
1588 characters against char_to_squeeze. */
1594 plain_read (char *buf
, size_t size
)
1596 size_t nr
= safe_read (STDIN_FILENO
, buf
, size
);
1597 if (nr
== SAFE_READ_ERROR
)
1598 error (EXIT_FAILURE
, errno
, _("read error"));
1602 /* Read buffers of SIZE bytes from stdin until one is found that
1603 contains at least one character not in the delete set. Store
1604 in the array BUF, all characters from that buffer that are not
1605 in the delete set, and return the number of characters saved
1609 read_and_delete (char *buf
, size_t size
)
1613 /* This enclosing do-while loop is to make sure that
1614 we don't return zero (indicating EOF) when we've
1615 just deleted all the characters in a buffer. */
1618 size_t nr
= plain_read (buf
, size
);
1623 /* This first loop may be a waste of code, but gives much
1624 better performance when no characters are deleted in
1625 the beginning of a buffer. It just avoids the copying
1626 of buf[i] into buf[n_saved] when it would be a NOP. */
1629 for (i
= 0; i
< nr
&& !in_delete_set
[to_uchar (buf
[i
])]; i
++)
1633 for (++i
; i
< nr
; i
++)
1634 if (!in_delete_set
[to_uchar (buf
[i
])])
1635 buf
[n_saved
++] = buf
[i
];
1637 while (n_saved
== 0);
1642 /* Read at most SIZE bytes from stdin into the array BUF. Then
1643 perform the in-place and one-to-one mapping specified by the global
1644 array 'xlate'. Return the number of characters read, or 0 upon EOF. */
1647 read_and_xlate (char *buf
, size_t size
)
1649 size_t bytes_read
= plain_read (buf
, size
);
1651 for (size_t i
= 0; i
< bytes_read
; i
++)
1652 buf
[i
] = xlate
[to_uchar (buf
[i
])];
1657 /* Initialize a boolean membership set, IN_SET, with the character
1658 values obtained by traversing the linked list of constructs S
1659 using the function 'get_next'. IN_SET is expected to have been
1660 initialized to all zeros by the caller. If COMPLEMENT_THIS_SET
1661 is true the resulting set is complemented. */
1664 set_initialize (struct Spec_list
*s
, bool complement_this_set
, bool *in_set
)
1668 s
->state
= BEGIN_STATE
;
1669 while ((c
= get_next (s
, nullptr)) != -1)
1671 if (complement_this_set
)
1672 for (size_t i
= 0; i
< N_CHARS
; i
++)
1673 in_set
[i
] = (!in_set
[i
]);
1677 main (int argc
, char **argv
)
1680 int non_option_args
;
1683 struct Spec_list buf1
, buf2
;
1684 struct Spec_list
*s1
= &buf1
;
1685 struct Spec_list
*s2
= &buf2
;
1687 initialize_main (&argc
, &argv
);
1688 set_program_name (argv
[0]);
1689 setlocale (LC_ALL
, "");
1690 bindtextdomain (PACKAGE
, LOCALEDIR
);
1691 textdomain (PACKAGE
);
1693 atexit (close_stdout
);
1695 while ((c
= getopt_long (argc
, argv
, "+AcCdst", long_options
, nullptr)) != -1)
1700 /* Undocumented option, for compatibility with AIX. */
1701 setlocale (LC_COLLATE
, "C");
1702 setlocale (LC_CTYPE
, "C");
1715 squeeze_repeats
= true;
1719 truncate_set1
= true;
1722 case_GETOPT_HELP_CHAR
;
1724 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
1727 usage (EXIT_FAILURE
);
1732 non_option_args
= argc
- optind
;
1733 translating
= (non_option_args
== 2 && !delete);
1734 min_operands
= 1 + (delete == squeeze_repeats
);
1735 max_operands
= 1 + (delete <= squeeze_repeats
);
1737 if (non_option_args
< min_operands
)
1739 if (non_option_args
== 0)
1740 error (0, 0, _("missing operand"));
1743 error (0, 0, _("missing operand after %s"), quote (argv
[argc
- 1]));
1744 fprintf (stderr
, "%s\n",
1746 ? N_("Two strings must be given when "
1747 "both deleting and squeezing repeats.")
1748 : N_("Two strings must be given when translating.")));
1750 usage (EXIT_FAILURE
);
1753 if (max_operands
< non_option_args
)
1755 error (0, 0, _("extra operand %s"), quote (argv
[optind
+ max_operands
]));
1756 if (non_option_args
== 2)
1757 fprintf (stderr
, "%s\n",
1758 _("Only one string may be given when "
1759 "deleting without squeezing repeats."));
1760 usage (EXIT_FAILURE
);
1764 if (!parse_str (argv
[optind
], s1
))
1765 main_exit (EXIT_FAILURE
);
1767 if (non_option_args
== 2)
1770 if (!parse_str (argv
[optind
+ 1], s2
))
1771 main_exit (EXIT_FAILURE
);
1778 /* Use binary I/O, since 'tr' is sometimes used to transliterate
1779 non-printable characters, or characters which are stripped away
1780 by text-mode reads (like CR and ^Z). */
1781 xset_binary_mode (STDIN_FILENO
, O_BINARY
);
1782 xset_binary_mode (STDOUT_FILENO
, O_BINARY
);
1783 fadvise (stdin
, FADVISE_SEQUENTIAL
);
1785 if (squeeze_repeats
&& non_option_args
== 1)
1787 set_initialize (s1
, complement
, in_squeeze_set
);
1788 squeeze_filter (io_buf
, sizeof io_buf
, plain_read
);
1790 else if (delete && non_option_args
== 1)
1792 set_initialize (s1
, complement
, in_delete_set
);
1796 size_t nr
= read_and_delete (io_buf
, sizeof io_buf
);
1799 if (fwrite (io_buf
, 1, nr
, stdout
) != nr
)
1800 error (EXIT_FAILURE
, errno
, _("write error"));
1803 else if (squeeze_repeats
&& delete && non_option_args
== 2)
1805 set_initialize (s1
, complement
, in_delete_set
);
1806 set_initialize (s2
, false, in_squeeze_set
);
1807 squeeze_filter (io_buf
, sizeof io_buf
, read_and_delete
);
1809 else if (translating
)
1813 bool *in_s1
= in_delete_set
;
1815 set_initialize (s1
, false, in_s1
);
1816 s2
->state
= BEGIN_STATE
;
1817 for (int i
= 0; i
< N_CHARS
; i
++)
1819 for (int i
= 0; i
< N_CHARS
; i
++)
1823 int ch
= get_next (s2
, nullptr);
1824 affirm (ch
!= -1 || truncate_set1
);
1827 /* This will happen when tr is invoked like e.g.
1828 tr -cs A-Za-z0-9 '\012'. */
1838 enum Upper_Lower_class class_s1
;
1839 enum Upper_Lower_class class_s2
;
1841 for (int i
= 0; i
< N_CHARS
; i
++)
1843 s1
->state
= BEGIN_STATE
;
1844 s2
->state
= BEGIN_STATE
;
1847 c1
= get_next (s1
, &class_s1
);
1848 c2
= get_next (s2
, &class_s2
);
1850 if (class_s1
== UL_LOWER
&& class_s2
== UL_UPPER
)
1852 for (int i
= 0; i
< N_CHARS
; i
++)
1854 xlate
[i
] = toupper (i
);
1856 else if (class_s1
== UL_UPPER
&& class_s2
== UL_LOWER
)
1858 for (int i
= 0; i
< N_CHARS
; i
++)
1860 xlate
[i
] = tolower (i
);
1864 /* The following should have been checked by validate... */
1865 if (c1
== -1 || c2
== -1)
1870 /* When case-converting, skip the elements as an optimization. */
1871 if (class_s2
!= UL_NONE
)
1873 skip_construct (s1
);
1874 skip_construct (s2
);
1877 affirm (c1
== -1 || truncate_set1
);
1879 if (squeeze_repeats
)
1881 set_initialize (s2
, false, in_squeeze_set
);
1882 squeeze_filter (io_buf
, sizeof io_buf
, read_and_xlate
);
1888 size_t bytes_read
= read_and_xlate (io_buf
, sizeof io_buf
);
1889 if (bytes_read
== 0)
1891 if (fwrite (io_buf
, 1, bytes_read
, stdout
) != bytes_read
)
1892 error (EXIT_FAILURE
, errno
, _("write error"));
1897 if (close (STDIN_FILENO
) != 0)
1898 error (EXIT_FAILURE
, errno
, _("standard input"));
1900 main_exit (EXIT_SUCCESS
);