11 lines
259 B
C
11 lines
259 B
C
#ifndef UTIL_H
|
|
#define UTIL_H
|
|
|
|
char* intToString(int x); // convert an int into a string
|
|
|
|
long pow(int x, int n); // x^n
|
|
|
|
int maxLowerPowerOf10(int x); // biggest power of 10 that is < x
|
|
|
|
#endif
|