Deleted Added
full compact
strfile.c (19288) strfile.c (19291)
1/*-
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Ken Arnold.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 336 unchanged lines hidden (view full) ---

345 fp = Firstch;
346 while (i--)
347 *lp++ = fp++->pos;
348 (void) fclose(Sort_1);
349 (void) fclose(Sort_2);
350 Tbl.str_flags |= STR_ORDERED;
351}
352
1/*-
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Ken Arnold.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 336 unchanged lines hidden (view full) ---

345 fp = Firstch;
346 while (i--)
347 *lp++ = fp++->pos;
348 (void) fclose(Sort_1);
349 (void) fclose(Sort_2);
350 Tbl.str_flags |= STR_ORDERED;
351}
352
353/* static */ int collate_range_cmp (c1, c2)
353static int collate_range_cmp (c1, c2)
354 int c1, c2;
355{
356 static char s1[2], s2[2];
357 int ret;
358
359 c1 &= UCHAR_MAX;
360 c2 &= UCHAR_MAX;
361 if (c1 == c2)

--- 86 unchanged lines hidden ---
354 int c1, c2;
355{
356 static char s1[2], s2[2];
357 int ret;
358
359 c1 &= UCHAR_MAX;
360 c2 &= UCHAR_MAX;
361 if (c1 == c2)

--- 86 unchanged lines hidden ---