MagickCore 7.1.1
Convert, Edit, Or Compose Bitmap Images
Loading...
Searching...
No Matches
locale_.h
1/*
2 Copyright @ 2003 ImageMagick Studio LLC, a non-profit organization
3 dedicated to making software imaging solutions freely available.
4
5 You may not use this file except in compliance with the License. You may
6 obtain a copy of the License at
7
8 https://imagemagick.org/script/license.php
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15
16 MagickCore locale methods.
17*/
18#ifndef MAGICKCORE_LOCALE_H
19#define MAGICKCORE_LOCALE_H
20
21#include "MagickCore/linked-list.h"
22
23#if defined(__cplusplus) || defined(c_plusplus)
24extern "C" {
25#endif
26
27typedef struct _LocaleInfo
28{
29 char
30 *path,
31 *tag,
32 *message;
33
34 MagickBooleanType
35 stealth;
36
37 size_t
38 signature;
40
41extern MagickExport char
42 **GetLocaleList(const char *,size_t *,ExceptionInfo *);
43
44extern MagickExport const char
45 *GetLocaleMessage(const char *);
46
47extern MagickExport const LocaleInfo
48 *GetLocaleInfo_(const char *,ExceptionInfo *),
49 **GetLocaleInfoList(const char *,size_t *,ExceptionInfo *);
50
51extern MagickExport double
52 InterpretLocaleValue(const char *magick_restrict,char *magick_restrict *);
53
54extern MagickExport int
55 LocaleCompare(const char *,const char *) magick_attribute((__pure__)),
56 LocaleLowercase(const int),
57 LocaleNCompare(const char *,const char *,const size_t)
58 magick_attribute((__pure__)),
59 LocaleUppercase(const int);
60
61extern MagickExport LinkedListInfo
62 *DestroyLocaleOptions(LinkedListInfo *),
63 *GetLocaleOptions(const char *,ExceptionInfo *);
64
65extern MagickExport MagickBooleanType
66 ListLocaleInfo(FILE *,ExceptionInfo *);
67
68extern MagickExport ssize_t
69 FormatLocaleFile(FILE *,const char *magick_restrict,...)
70 magick_attribute((__format__ (__printf__,2,3))),
71 FormatLocaleString(char *magick_restrict,const size_t,
72 const char *magick_restrict,...)
73 magick_attribute((__format__ (__printf__,3,4)));
74
75extern MagickExport void
76 LocaleLower(char *),
77 LocaleUpper(char *);
78
79#if defined(__cplusplus) || defined(c_plusplus)
80}
81#endif
82
83#endif