Changeset 45105b for molecuilder
- Timestamp:
- Oct 16, 2008, 9:25:56 AM (17 years ago)
- Children:
- 88e31c
- Parents:
- 93d0ee
- Location:
- molecuilder/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/helpers.cpp
r93d0ee r45105b 182 182 }; 183 183 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 */ 188 bool 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 -
molecuilder/src/helpers.hpp
r93d0ee r45105b 59 59 void Free(void ** buffer, const char* output); 60 60 char *FixedDigitNumber(const int FragmentNumber, const int digits); 61 bool IsValidNumber( const char *string); 61 62 62 63 /********************************************** helpful template functions *********************************/
Note:
See TracChangeset
for help on using the changeset viewer.