Changes in src/helpers.cpp [cc2ee5:8f019c]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/helpers.cpp
-
Property mode
changed from
100755
to100644
rcc2ee5 r8f019c 182 182 }; 183 183 184 /** Tests whether a given string contains a valid number or not.185 * \param *string186 * \return true - is a number, false - is not a valid number187 */188 bool IsValidNumber( const char *string)189 {190 int ptr = 0;191 if ((string[ptr] == '.') || (string[ptr] == '-')) // number may be negative or start with dot192 ptr++;193 if ((string[ptr] >= '0') && (string[ptr] <= '9'))194 return true;195 return false;196 };197 198 -
Property mode
changed from
Note:
See TracChangeset
for help on using the changeset viewer.