Assimp
v4.1. (December 2018)
|
Namespaces | |
Assimp | |
MACHINE-GENERATED by scripts/ICFImporter/CppGenerator.py. | |
Functions | |
AI_FORCE_INLINE 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> | |
AI_FORCE_INLINE 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... | |
AI_FORCE_INLINE int | Assimp::ASSIMP_stricmp (const char *s1, const char *s2) |
Helper function to do platform independent string comparison. More... | |
AI_FORCE_INLINE int | Assimp::ASSIMP_stricmp (const std::string &a, const std::string &b) |
Case independent comparison of two std::strings. More... | |
AI_FORCE_INLINE int | Assimp::ASSIMP_strincmp (const char *s1, const char *s2, unsigned int n) |
Helper function to do platform independent string comparison. More... | |
AI_FORCE_INLINE unsigned int | Assimp::integer_pow (unsigned int base, unsigned int power) |
Evaluates an integer power. More... | |