]> git.ipfire.org Git - thirdparty/glibc.git/blame - string/strcoll.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / string / strcoll.c
CommitLineData
b168057a 1/* Copyright (C) 1995-2015 Free Software Foundation, Inc.
c84142e8 2 This file is part of the GNU C Library.
5358d026 3 Written by Ulrich Drepper <drepper@cygnus.com>, 1995.
28f540f4 4
c84142e8 5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
28f540f4 9
c84142e8
UD
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
28f540f4 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
28f540f4 18
28f540f4 19#include <string.h>
19bc17a9 20
83d660c7
UD
21#ifndef STRING_TYPE
22# define STRING_TYPE char
ccadf7b5
UD
23# define STRCOLL strcoll
24# define STRCOLL_L __strcoll_l
61995d3e 25# define USE_HIDDEN_DEF
19bc17a9
RM
26#endif
27
83d660c7
UD
28#include "../locale/localeinfo.h"
29
ccadf7b5 30
4b10dd6c 31int
8667f90e 32STRCOLL (const STRING_TYPE *s1, const STRING_TYPE *s2)
4b10dd6c 33{
ccadf7b5 34 return STRCOLL_L (s1, s2, _NL_CURRENT_LOCALE);
28f540f4 35}
61995d3e
RM
36
37#ifdef USE_HIDDEN_DEF
38libc_hidden_def (STRCOLL)
df962917 39#endif