File: getlocalename_l-unsafe.h

package info (click to toggle)
datamash 1.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,600 kB
  • sloc: ansic: 65,320; sh: 8,982; perl: 5,127; makefile: 250; sed: 16
file content (67 lines) | stat: -rw-r--r-- 2,099 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* Return name of a single locale category.
   Copyright (C) 2025 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.  */

#ifndef _GETLOCALENAME_L_UNSAFE_H
#define _GETLOCALENAME_L_UNSAFE_H

#include <locale.h>

#include "arg-nonnull.h"

#ifdef __cplusplus
extern "C" {
#endif


/* This enumeration describes the storage of the return value.  */
enum storage
{
  /* Storage with indefinite extent.  */
  STORAGE_INDEFINITE,
  /* Storage in a thread-independent location, valid until the next setlocale()
     call.  */
  STORAGE_GLOBAL,
  /* Storage in a thread-local buffer, valid until the next
     getlocalename_l_unlocked() call in the same thread.  */
  STORAGE_THREAD,
  /* Storage in or attached to the locale_t object, valid until the next call
     to newlocale() with that object as base or until the next freelocale() call
     for that object.  */
  STORAGE_OBJECT
};

/* Return type of getlocalename_l_unlocked.  */
struct string_with_storage
{
  const char *value;
  enum storage storage;
};

/* Returns the name of the locale category CATEGORY in the given LOCALE object
   or, if LOCALE is LC_GLOBAL_LOCALE, in the global locale.
   CATEGORY must be != LC_ALL.  */
extern struct string_with_storage
       getlocalename_l_unsafe (int category, locale_t locale)
                              _GL_ARG_NONNULL ((2));


#ifdef __cplusplus
}
#endif

#endif /* _GETLOCALENAME_L_UNSAFE_H */