functions.h
Go to the documentation of this file.
1 float uatoi( char s[] )
2 {
3  return( atof(s) );
4 }
5 
6 int uuatoi( char s[] )
7 {
8  int i, n;
9 
10  n = 0;
11  for (i = 0; s[i] >= '0' && s[i] <= '9'; ++ i)
12  n = 10 * n + (s[i] - '0');
13  return n;
14 }
const unsigned n
Definition: CG3DPackingUnitTest.cpp:32
int uuatoi(char s[])
Definition: functions.h:6
float uatoi(char s[])
Definition: functions.h:1
const std::complex< Mdouble > i
Definition: ExtendedMath.h:51