MagickCore  7.0.10
Convert, Edit, Or Compose Bitmap Images
locale_.h
Go to the documentation of this file.
1 /*
2  Copyright 1999-2020 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)
24 extern "C" {
25 #endif
26 
27 typedef struct _LocaleInfo
28 {
29  char
30  *path,
31  *tag,
32  *message;
33 
36 
37  size_t
39 } LocaleInfo;
40 
41 extern MagickExport char
42  **GetLocaleList(const char *,size_t *,ExceptionInfo *);
43 
44 extern MagickExport const char
45  *GetLocaleMessage(const char *);
46 
47 extern MagickExport const LocaleInfo
48  *GetLocaleInfo_(const char *,ExceptionInfo *),
49  **GetLocaleInfoList(const char *,size_t *,ExceptionInfo *);
50 
51 extern MagickExport double
52  InterpretLocaleValue(const char *magick_restrict,char **magick_restrict);
53 
54 extern 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 
63  *GetLocaleOptions(const char *,ExceptionInfo *);
64 
66  ListLocaleInfo(FILE *,ExceptionInfo *);
67 
68 extern 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 
75 extern MagickExport void
76  LocaleLower(char *),
77  LocaleUpper(char *);
78 
79 #if defined(__cplusplus) || defined(c_plusplus)
80 }
81 #endif
82 
83 #endif
#define magick_restrict
Definition: MagickCore.h:41
MagickExport int LocaleLowercase(const int c)
Definition: locale.c:1479
Definition: exception.h:101
MagickExport ssize_t FormatLocaleString(char *magick_restrict string, const size_t length, const char *magick_restrict format,...)
Definition: locale.c:467
MagickExport LinkedListInfo * GetLocaleOptions(const char *filename, ExceptionInfo *exception)
Definition: locale.c:789
Definition: linked-list.c:68
#define magick_attribute(x)
Definition: method-attribute.h:104
MagickExport int LocaleUppercase(const int c)
Definition: locale.c:1608
MagickExport ssize_t FormatLocaleFile(FILE *file, const char *magick_restrict format,...)
Definition: locale.c:372
MagickBooleanType
Definition: magick-type.h:169
MagickExport void LocaleLower(char *string)
Definition: locale.c:1447
char * message
Definition: locale_.h:30
MagickExport int LocaleNCompare(const char *p, const char *q, const size_t length)
Definition: locale.c:1527
char * tag
Definition: locale_.h:30
size_t signature
Definition: locale_.h:38
MagickExport MagickBooleanType ListLocaleInfo(FILE *file, ExceptionInfo *exception)
Definition: locale.c:1026
MagickExport char ** GetLocaleList(const char *pattern, size_t *number_messages, ExceptionInfo *exception)
Definition: locale.c:676
MagickExport int LocaleCompare(const char *p, const char *q)
Definition: locale.c:1403
MagickExport LinkedListInfo * DestroyLocaleOptions(LinkedListInfo *messages)
Definition: locale.c:293
char * path
Definition: locale_.h:30
MagickExport const char * GetLocaleMessage(const char *tag)
Definition: locale.c:741
struct _LocaleInfo LocaleInfo
MagickExport const LocaleInfo * GetLocaleInfo_(const char *tag, ExceptionInfo *exception)
Definition: locale.c:508
#define MagickExport
Definition: method-attribute.h:80
MagickBooleanType stealth
Definition: locale_.h:35
MagickExport const LocaleInfo ** GetLocaleInfoList(const char *pattern, size_t *number_messages, ExceptionInfo *exception)
Definition: locale.c:581
Definition: locale_.h:27
MagickExport void LocaleUpper(char *string)
Definition: locale.c:1576
MagickExport double InterpretLocaleValue(const char *magick_restrict string, char **magick_restrict sentinal)
Definition: locale.c:971