collcmp.c revision 118396
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 118396 2003-08-03 19:28:23Z ache $");
2992986Sobrien
3017530Sache#include <string.h>
31118396Sache#include "collate.h"
3217551Sache
3318331Sache/*
34118378Sache * Compare two characters using collate
3518331Sache */
3618331Sache
37118376Sacheint __collate_range_cmp(c1, c2)
3817551Sache	int c1, c2;
3917551Sache{
4017530Sache	static char s1[2], s2[2];
4117530Sache
4217551Sache	s1[0] = c1;
4317551Sache	s2[0] = c2;
44118376Sache	return (strcoll(s1, s2));
4517530Sache}
46