/** ******************************************************************************* * @file etk/tool.cpp * @brief Ewol Tool Kit : generique tools (Sources) * @author Edouard DUPIN * @date 26/06/2012 * @par Project * Ewol TK * * @par Copyright * Copyright 2011 Edouard DUPIN, all right reserved * * This software is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY. * * Licence summary : * You can modify and redistribute the sources code and binaries. * You can send me the bug-fix * * Term of the licence in in the file licence.txt. * ******************************************************************************* */ #include // for the rand ... #include #include float etk::tool::frand(float a, float b) { return ( rand()/(float)RAND_MAX ) * (b-a) + a; } int32_t etk::tool::irand(int32_t a, int32_t b) { return (int32_t)(( rand()/(float)RAND_MAX ) * ((float)b-(float)a) + (float)a); } void etk::tool::SortList(etk::Vector &m_listDirectory) { etk::Vector tmpList = m_listDirectory; m_listDirectory.Clear(); for(int32_t iii=0; iii *m_listDirectory[jjj]) { findPos = jjj+1; } } //EWOL_DEBUG("position="<= 'A') { in1 = in1 - 'A' + 'a'; } if (in2 <= 'Z' && in2 >= 'A') { in2 = in2 - 'A' + 'a'; } if (in1 != in2) { return false; } } iii++; input1++; input2++; } return true; }