This file is indexed.

/usr/include/ivstd/string.h is in ivtools-dev 1.2.11a1-2.

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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef ivtools_string_h
#define ivtools_string_h

#if defined(__cplusplus)

#if defined(sun) && !defined(__svr4__)
extern "C" {
int strcasecmp(const char*, const char*);
int strncasecmp(const char*, const char*,int);
#undef size_t
#define size_t long unsigned int	
}
#endif


#include <ctype.h>

inline char* strlower(char* str) {
  char* s = str;
  while (*s) {
    *s = tolower(*s);
    ++s;
  }
  return str;
}

#endif


#if defined(__cplusplus)
#include_next <string.h>
#undef NULL
#define NULL 0
#else
#include </usr/include/string.h>
#endif
#include <strings.h>
#endif