Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/helpers.cpp

    • Property mode changed from 100644 to 100755
    r8f019c rcc2ee5  
    182182};
    183183
     184/** Tests whether a given string contains a valid number or not.
     185 * \param *string
     186 * \return true - is a number, false - is not a valid number
     187 */
     188bool IsValidNumber( const char *string)
     189{
     190  int ptr = 0;
     191  if ((string[ptr] == '.') || (string[ptr] == '-')) // number may be negative or start with dot
     192    ptr++;
     193  if ((string[ptr] >= '0') && (string[ptr] <= '9'))
     194    return true;
     195  return false;
     196};
     197
     198
Note: See TracChangeset for help on using the changeset viewer.