Go to the documentation of this file.
13 void qsort(
void *base,
size_t nel,
size_t width,
int (*compar)(
const void *,
const void *));
15 static inline double atof(
const char * str) {
double r = 0; sscanf(str,
"%lf", &r);
return r; }
16 static inline int atoi(
const char * str) {
int i; sscanf(str,
"%i", &i);
return i; }
17 static inline int atol(
const char * str) {
long l; sscanf(str,
"%li", &l);
return l; }