|
| unsigned int | Assimp::ASSIMP_itoa10 (char *out, unsigned int max, int32_t number) |
| | itoa with a fixed base 10 'itoa' is not consistently available on all platforms so it is quite useful to have a small replacement function here. More...
|
| |
| template<size_t length> |
| unsigned int | Assimp::ASSIMP_itoa10 (char(&out)[length], int32_t number) |
| | itoa with a fixed base 10 (Secure template overload) The compiler should choose this function if he or she is able to determine the size of the array automatically. More...
|
| |
| int | Assimp::ASSIMP_stricmp (const char *s1, const char *s2) |
| | Helper function to do platform independent string comparison. More...
|
| |
| int | Assimp::ASSIMP_stricmp (const std::string &a, const std::string &b) |
| | Case independent comparison of two std::strings. More...
|
| |
| int | Assimp::ASSIMP_strincmp (const char *s1, const char *s2, unsigned int n) |
| | Helper function to do platform independent string comparison. More...
|
| |
| unsigned int | Assimp::integer_pow (unsigned int base, unsigned int power) |
| | Evaluates an integer power. More...
|
| |