![]() |
MapLink Pro 11.1.1.0.
Envitia MapLink Pro: The Ultimate Mapping Application Toolkit
|
A utility class which provides cross platform implementations of useful methods.
Static Public Member Functions | |
static int64_t | atoi64 (const char *number) |
static bool | isnan (double dsrc) |
static const char * | strcasestr (const char *str1, const char *str2) |
static int | stricmp (const char *str1, const char *str2) |
static int | strnicmp (const char *str1, const char *str2, size_t n) |
|
static |
This method converts a string to a 64bit integer.
Calls either the _atoi64 on windows or C99 atoll. See system manual pages for specific limitations.
The current locale is used.
number | string to be converted |
|
static |
This method checks to see if a double is a NAN.
Returns true if the double is not a number, false otherwise.
Argument:
dsrc : a double-precision floating point value.
|
static |
Searches str1 for occurrences of str2, ignoring case sensitivity.
Returns a pointer to the first occurrence of str2, or null if not present.
str1 | The string to search |
str2 | The string to search for. |
|
static |
Case-insensitive string comparison.
The current system locale is used.
str1 | Null terminated string. |
str2 | Null terminated string. |
|
static |
Case-insensitive string comparison of first n characters.
The current system locale is used.
str1 | Null terminated string. |
str2 | Null terminated string. |
n | the number of characters to compare. |