Spaces:
Running
Running
//======================================================================== | |
// | |
// pdfsig.cc | |
// | |
// This file is licensed under the GPLv2 or later | |
// | |
// Copyright (C) 2010 Albert Astals Cid <[email protected]> | |
// | |
//======================================================================== | |
static int numberOfCharacters(unsigned int n) | |
{ | |
int charNum = 0; | |
while (n >= 10) { | |
n = n / 10; | |
charNum++; | |
} | |
charNum++; | |
return charNum; | |
} | |