AbsoluteAI / poppler-24.05.0 /utils /numberofcharacters.h
thejagstudio's picture
Upload 714 files
5cee033 verified
raw
history blame contribute delete
522 Bytes
//========================================================================
//
// pdfsig.cc
//
// This file is licensed under the GPLv2 or later
//
// Copyright (C) 2010 Albert Astals Cid <[email protected]>
//
//========================================================================
#ifndef NUMBEROFCHARACTERS_H
#define NUMBEROFCHARACTERS_H
static int numberOfCharacters(unsigned int n)
{
int charNum = 0;
while (n >= 10) {
n = n / 10;
charNum++;
}
charNum++;
return charNum;
}
#endif