This file is indexed.

/usr/include/kvutils/kvu_numtostr.h is in libkvutils-dev 2.8.1-5build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef INCLUDED_KVU_NUMTOSTR_H
#define INCLUDED_KVU_NUMTOSTR_H

#include <string>

std::string kvu_numtostr(char c);
std::string kvu_numtostr(unsigned char c);
std::string kvu_numtostr(signed char c);
std::string kvu_numtostr(const void *p);
std::string kvu_numtostr(int n);
std::string kvu_numtostr(unsigned int n);
std::string kvu_numtostr(long int n);
std::string kvu_numtostr(unsigned long int n);
#if defined _ISOC99_SOURCE || defined _ISOC9X_SOURCE || defined _LARGEFILE_SOURCE || defined __GNUC__
std::string kvu_numtostr(long long int n);
std::string kvu_numtostr(unsigned long long int n);
#endif
std::string kvu_numtostr(short n);
std::string kvu_numtostr(unsigned short n);
std::string kvu_numtostr(bool b);
std::string kvu_numtostr(double n, int flo_prec = 2);
std::string kvu_numtostr(float n, int flo_prec = 2);

#endif