This file is indexed.

/usr/share/libustr-dev/ustr-srch-internal.h is in libustr-dev 1.0.4-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
/* Copyright (c) 2007 James Antill -- See LICENSE file for terms. */
#ifndef USTR_SRCH_INTERNAL_H
#define USTR_SRCH_INTERNAL_H 1

#ifndef USTR_MAIN_H
# error " You should have already included ustr-main.h, or just include ustr.h"
#endif

#ifndef USTR_CONF_HAVE_MEMMEM /* GNU extension */
#ifdef __GLIBC__
#define USTR_CONF_HAVE_MEMMEM 1
#else
#define USTR_CONF_HAVE_MEMMEM 0
#endif
#endif

#if USTR_CONF_HAVE_MEMMEM /* GNU extension */
# define USTR__SYS_MEMMEM memmem
#else
USTR_CONF_e_PROTO void *ustr__sys_memmem(const void*, size_t,const void*,size_t)
    USTR__COMPILE_ATTR_WARN_UNUSED_RET() USTR__COMPILE_ATTR_NONNULL_A();
# define USTR__SYS_MEMMEM ustr__sys_memmem
#endif

USTR_CONF_e_PROTO void *ustr__memrepchr(const void *, size_t, char, size_t)
    USTR__COMPILE_ATTR_WARN_UNUSED_RET() USTR__COMPILE_ATTR_NONNULL_A();

USTR_CONF_e_PROTO void *ustr__memcasechr(const void *, const char, size_t)
    USTR__COMPILE_ATTR_WARN_UNUSED_RET() USTR__COMPILE_ATTR_NONNULL_A();
USTR_CONF_e_PROTO
void *ustr__memcasemem(const void *, size_t, const void *, size_t)
    USTR__COMPILE_ATTR_WARN_UNUSED_RET() USTR__COMPILE_ATTR_NONNULL_A();

USTR_CONF_e_PROTO
void *ustr__memcaserepchr(const void *, size_t, char, size_t)
    USTR__COMPILE_ATTR_WARN_UNUSED_RET() USTR__COMPILE_ATTR_NONNULL_A();

#endif