collcmp.c revision 118376
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
2792986Sobrien#include <sys/cdefs.h>
2892986Sobrien__FBSDID("$FreeBSD: head/lib/libc/locale/collcmp.c 118376 2003-08-03 04:40:40Z ache $");
2992986Sobrien
3062758Sache#define ASCII_COMPATIBLE_COLLATE        /* see share/colldef */
3119129Sache
3217530Sache#include <string.h>
3319275Sache#include "collate.h"
3419129Sache#ifndef ASCII_COMPATIBLE_COLLATE
3519129Sache#include <ctype.h>
3619129Sache#endif
3717551Sache
3818331Sache/*
3918331Sache * Compare two characters converting collate information
4018331Sache * into ASCII-compatible range, it allows to handle
4118331Sache * "[a-z]"-type ranges with national characters.
4218331Sache */
4318331Sache
44118376Sacheint __collate_range_cmp(c1, c2)
4517551Sache	int c1, c2;
4617551Sache{
4717530Sache	static char s1[2], s2[2];
4819129Sache#ifndef ASCII_COMPATIBLE_COLLATE
4919129Sache	int as1, as2, al1, al2;
5019129Sache#endif
5117530Sache
5219129Sache#ifndef ASCII_COMPATIBLE_COLLATE
5317576Sache	as1 = isascii(c1);
5417576Sache	as2 = isascii(c2);
5517576Sache	al1 = isalpha(c1);
5617576Sache	al2 = isalpha(c2);
5717576Sache
5817576Sache	if (as1 || as2 || al1 || al2) {
5917576Sache		if ((as1 && as2) || (!al1 && !al2))
6017576Sache			return (c1 - c2);
6117576Sache		if (al1 && !al2) {
6217576Sache			if (isupper(c1))
6317576Sache				return ('A' - c2);
6417576Sache			else
6517576Sache				return ('a' - c2);
6617576Sache		} else if (al2 && !al1) {
6717576Sache			if (isupper(c2))
6817576Sache				return (c1 - 'A');
6917576Sache			else
7017576Sache				return (c1 - 'a');
7117576Sache		}
7217530Sache	}
7319129Sache#endif
7417551Sache	s1[0] = c1;
7517551Sache	s2[0] = c2;
76118376Sache	return (strcoll(s1, s2));
7717530Sache}
78