collcmp.c revision 17576
117530Sache/*
217530Sache * Copyright (C) 1996 by Andrey A. Chernov, Moscow, Russia.
317530Sache * All rights reserved.
417530Sache *
517530Sache * Redistribution and use in source and binary forms, with or without
617530Sache * modification, are permitted provided that the following conditions
717530Sache * are met:
817530Sache * 1. Redistributions of source code must retain the above copyright
917530Sache *    notice, this list of conditions and the following disclaimer.
1017530Sache * 2. Redistributions in binary form must reproduce the above copyright
1117530Sache *    notice, this list of conditions and the following disclaimer in the
1217530Sache *    documentation and/or other materials provided with the distribution.
1317530Sache *
1417530Sache * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
1517530Sache * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1617530Sache * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1717530Sache * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1817530Sache * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1917530Sache * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2017530Sache * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2117530Sache * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2217530Sache * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2317530Sache * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2417530Sache * SUCH DAMAGE.
2517530Sache */
2617530Sache
2717530Sache#include <ctype.h>
2817530Sache#include <string.h>
2917556Sache#include <limits.h>
3017551Sache#include <locale.h>
3117551Sache
3217551Sacheint collate_range_cmp (c1, c2)
3317551Sache	int c1, c2;
3417551Sache{
3517576Sache	int as1, as2, al1, al2;
3617530Sache	static char s1[2], s2[2];
3717530Sache
3817551Sache	c1 &= UCHAR_MAX;
3917551Sache	c2 &= UCHAR_MAX;
4017530Sache	if (c1 == c2)
4117530Sache		return (0);
4217576Sache
4317576Sache	as1 = isascii(c1);
4417576Sache	as2 = isascii(c2);
4517576Sache	al1 = isalpha(c1);
4617576Sache	al2 = isalpha(c2);
4717576Sache
4817576Sache	if (as1 || as2 || al1 || al2) {
4917576Sache		if ((as1 && as2) || (!al1 && !al2))
5017576Sache			return (c1 - c2);
5117576Sache		if (al1 && !al2) {
5217576Sache			if (isupper(c1))
5317576Sache				return ('A' - c2);
5417576Sache			else
5517576Sache				return ('a' - c2);
5617576Sache		} else if (al2 && !al1) {
5717576Sache			if (isupper(c2))
5817576Sache				return (c1 - 'A');
5917576Sache			else
6017576Sache				return (c1 - 'a');
6117576Sache		}
6217530Sache	}
6317576Sache
6417551Sache	s1[0] = c1;
6517551Sache	s2[0] = c2;
6617530Sache	return strcoll(s1, s2);
6717530Sache}
68