1
0
mirror of https://https.git.savannah.gnu.org/git/gnulib.git synced 2026-04-28 06:33:36 +00:00
Files
gnulib/lib/freelocale.c
Bruno Haible 64695e60df locale-h: Move private Gnulib functions to _gl_* namespace.
* lib/locale.in.h (_gl_log2_lc_mask): Renamed from gl_log2_lc_mask.
(_gl_log2_lcmask_to_index): Renamed from gl_log2_lcmask_to_index.
(_gl_index_to_log2_lcmask): Renamed from gl_index_to_log2_lcmask.
* lib/duplocale.c: Update.
* lib/freelocale.c: Update.
* lib/newlocale.c: Update.
* lib/getlocalename_l-unsafe.c: Update.
* lib/is_l-impl.h: Update.
* lib/to_l-impl.h: Update.
* lib/strcasecmp_l.c: Update.
* lib/strncasecmp_l.c: Update.
* lib/strerror_l.c: Update.
2026-03-15 23:09:40 +01:00

42 lines
1.3 KiB
C

/* Free a locale object.
Copyright (C) 2025-2026 Free Software Foundation, Inc.
This file is free software: you can redistribute it and/or 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.
This file 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* Written by Bruno Haible <bruno@clisp.org>, 2025. */
#include <config.h>
/* Specification. */
#include <locale.h>
#include <stdlib.h>
void
freelocale (locale_t locale)
{
for (int i = 6; --i >= 0; )
{
#if HAVE_WINDOWS_LOCALE_T
if (!(i == _gl_log2_lcmask_to_index (_gl_log2_lc_mask (LC_MESSAGES))
|| locale->category[i].is_c_locale))
/* Documentation:
<https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/free-locale> */
_free_locale (locale->category[i].system_locale);
#endif
free (locale->category[i].name);
}
free (locale);
}