MagickCore
6.9.10
Convert, Edit, Or Compose Bitmap Images
|
Go to the documentation of this file.
18 #ifndef MAGICKCORE_STRING_PRIVATE_H
19 #define MAGICKCORE_STRING_PRIVATE_H
23 #if defined(__cplusplus) || defined(c_plusplus)
28 const double interval)
38 value*=interval/100.0;
49 const double interval)
59 value*=interval/100.0;
65 return((
int) strtol(value,(
char **) NULL,10));
70 return(strtol(value,(
char **) NULL,10));
76 return(strtoul(value,(
char **) NULL,10));
79 #if defined(__cplusplus) || defined(c_plusplus)
static double SiPrefixToDoubleInterval(const char *string, const double interval)
Definition: string-private.h:27
#define magick_restrict
Definition: MagickCore.h:41
static int StringToInteger(const char *magick_restrict value)
Definition: string-private.h:63
static double StringToDouble(const char *magick_restrict string, char **magick_restrict sentinal)
Definition: string-private.h:42
static long StringToLong(const char *magick_restrict value)
Definition: string-private.h:68
MagickExport double InterpretSiPrefixValue(const char *magick_restrict string, char **magick_restrict sentinal)
Definition: string.c:1396
MagickExport double InterpretLocaleValue(const char *magick_restrict string, char **magick_restrict sentinal)
Definition: locale.c:1005
static double StringToDoubleInterval(const char *string, const double interval)
Definition: string-private.h:48
static unsigned long StringToUnsignedLong(const char *magick_restrict value)
Definition: string-private.h:73