This file is indexed.

/usr/share/libustr-dev/ustr-ins-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
/* Copyright (c) 2007 Paul Rosenfeld
                      James Antill -- See LICENSE file for terms. */
#ifndef USTR_INS_INTERNAL_H
#define USTR_INS_INTERNAL_H 1

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

USTR_CONF_e_PROTO
int ustrp__ins_undef(struct Ustr_pool *, struct Ustr **ps1, size_t, size_t)
    USTR__COMPILE_ATTR_NONNULL_L((2));
USTR_CONF_e_PROTO
int ustrp__ins_buf(struct Ustr_pool *,struct Ustr **,size_t,const void *,size_t)
    USTR__COMPILE_ATTR_NONNULL_L((2, 4));
USTR_CONF_e_PROTO
int ustrp__ins(struct Ustr_pool *, struct Ustr **, size_t, const struct Ustr *)
    USTR__COMPILE_ATTR_NONNULL_L((2, 4));
USTR_CONF_e_PROTO
int ustrp__ins_subustr(struct Ustr_pool *, struct Ustr **, size_t,
                       const struct Ustr *, size_t, size_t)
    USTR__COMPILE_ATTR_NONNULL_L((2, 4));
USTR_CONF_E_PROTO
int ustrp__ins_rep_chr(struct Ustr_pool *, struct Ustr **, size_t, char, size_t)
    USTR__COMPILE_ATTR_NONNULL_L((2));

#ifdef USTR_FMT_H
# if USTR_CONF_HAVE_VA_COPY
USTR_CONF_e_PROTO
int ustrp__ins_vfmt_lim(struct Ustr_pool *, struct Ustr **, size_t, size_t,
                        const char *, va_list)
    USTR__COMPILE_ATTR_NONNULL_L((2, 5)) USTR__COMPILE_ATTR_FMT(5, 0);
# endif
#endif

#endif