2001-04-06 19:49:18 +02:00
|
|
|
/* Charset name normalization.
|
2013-01-02 20:01:50 +01:00
|
|
|
Copyright (C) 2001-2013 Free Software Foundation, Inc.
|
2001-04-06 19:49:18 +02:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Ulrich Drepper <drepper@cygnus.com>, 2001.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 06:58:11 +02:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
2001-04-06 19:49:18 +02:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 06:58:11 +02:00
|
|
|
Lesser General Public License for more details.
|
2001-04-06 19:49:18 +02:00
|
|
|
|
2001-07-06 06:58:11 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-10 00:18:22 +01:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2001-04-06 19:49:18 +02:00
|
|
|
|
|
|
|
#include <ctype.h>
|
2001-08-15 01:29:55 +02:00
|
|
|
#include <locale.h>
|
2001-04-06 19:49:18 +02:00
|
|
|
|
|
|
|
|
2003-06-11 23:57:23 +02:00
|
|
|
static void
|
2001-04-06 19:49:18 +02:00
|
|
|
strip (char *wp, const char *s)
|
|
|
|
{
|
|
|
|
int slash_count = 0;
|
|
|
|
|
|
|
|
while (*s != '\0')
|
|
|
|
{
|
2005-12-21 08:28:33 +01:00
|
|
|
if (__isalnum_l (*s, _nl_C_locobj_ptr)
|
2007-04-25 17:14:36 +02:00
|
|
|
|| *s == '_' || *s == '-' || *s == '.' || *s == ',' || *s == ':')
|
2005-12-21 08:28:33 +01:00
|
|
|
*wp++ = __toupper_l (*s, _nl_C_locobj_ptr);
|
2001-04-06 19:49:18 +02:00
|
|
|
else if (*s == '/')
|
|
|
|
{
|
|
|
|
if (++slash_count == 3)
|
|
|
|
break;
|
|
|
|
*wp++ = '/';
|
|
|
|
}
|
|
|
|
++s;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (slash_count++ < 2)
|
|
|
|
*wp++ = '/';
|
|
|
|
|
|
|
|
*wp = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-11 23:57:23 +02:00
|
|
|
static inline char * __attribute__ ((unused, always_inline))
|
2001-04-06 19:49:18 +02:00
|
|
|
upstr (char *dst, const char *str)
|
|
|
|
{
|
|
|
|
char *cp = dst;
|
2005-12-21 08:28:33 +01:00
|
|
|
while ((*cp++ = __toupper_l (*str++, _nl_C_locobj_ptr)) != '\0')
|
2001-04-06 19:49:18 +02:00
|
|
|
/* nothing */;
|
|
|
|
return dst;
|
|
|
|
}
|