util.c: remove numlen function

Its uses have been replaced by snprintf, which is more in line with its usage.
This commit is contained in:
Ian Fan 2019-01-22 10:43:48 +00:00 committed by emersion
parent 42f8a038c9
commit de9a357de8
4 changed files with 8 additions and 21 deletions

View file

@ -9,11 +9,6 @@
*/
int wrap(int i, int max);
/**
* Count number of digits in int, including '-' sign if there is one
*/
int numlen(int n);
/**
* Given a string that represents an RGB(A) color, return a uint32_t
* version of the color.