00001 #ifndef __NUMBERS_H__ 00002 #define __NUMBERS_H__ 00003 00004 00005 /* Functions return 1 if the parameter is a string which 00006 represents a valid number of the indicated type, else 0. */ 00007 00008 00009 int CheckAlphaToFloat( char *f ); 00010 00011 //int CheckAlphaToInt( char *i ); 00012 00013 int CheckAlphaToUint( char *u ); 00014 00015 00016 #endif/* __NUMBERS_H__ */
1.5.8