This file is indexed.

/usr/include/freebsd/string.h is in freebsd-glue 0.2.20.

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
#include_next <string.h>

#ifndef _STRING_H_
#define _STRING_H_
size_t strlcat(char * __restrict, const char * __restrict, size_t);
size_t strlcpy(char * __restrict, const char * __restrict, size_t);
void strmode(int, char *);
char *strnstr(const char *big, const char *little, size_t len);
#endif