mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 02:47:46 +03:00
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:
parent
42f8a038c9
commit
de9a357de8
4 changed files with 8 additions and 21 deletions
|
@ -11,15 +11,6 @@ int wrap(int i, int max) {
|
|||
return ((i % max) + max) % max;
|
||||
}
|
||||
|
||||
int numlen(int n) {
|
||||
int j = n <= 0 ? 1 : 0;
|
||||
while (n) {
|
||||
j++;
|
||||
n /= 10;
|
||||
}
|
||||
return j;
|
||||
}
|
||||
|
||||
uint32_t parse_color(const char *color) {
|
||||
if (color[0] == '#') {
|
||||
++color;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue