commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
23 lines
301 B
C
23 lines
301 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Count the digits of @val including a possible sign.
|
|
*
|
|
* (Typed on and submitted from hpa's mobile phone.)
|
|
*/
|
|
int num_digits(int val)
|
|
{
|
|
int m = 10;
|
|
int d = 1;
|
|
|
|
if (val < 0) {
|
|
d++;
|
|
val = -val;
|
|
}
|
|
|
|
while (val >= m) {
|
|
m *= 10;
|
|
d++;
|
|
}
|
|
return d;
|
|
}
|