This file is indexed.

/usr/share/libustr-dev/ustr-sub-internal.h is in libustr-dev 1.0.4-3+b2.

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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* Copyright (c) 2007 Paul Rosenfeld
                      James Antill -- See LICENSE file for terms. */
#ifndef USTR_SUB_INTERNAL_H
#define USTR_SUB_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__sub_undef(struct Ustr_pool *, struct Ustr **, size_t, size_t)
    USTR__COMPILE_ATTR_NONNULL_L((2));
USTR_CONF_e_PROTO
int ustrp__sub_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__sub(struct Ustr_pool *, struct Ustr **,size_t, const struct Ustr *)
    USTR__COMPILE_ATTR_NONNULL_L((2, 4));
USTR_CONF_e_PROTO
int ustrp__sub_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__sub_rep_chr(struct Ustr_pool *, struct Ustr **, size_t, char,size_t)
    USTR__COMPILE_ATTR_NONNULL_L((2));


USTR_CONF_e_PROTO
int ustrp__sc_sub_undef(struct Ustr_pool *,struct Ustr **,size_t,size_t,size_t)
    USTR__COMPILE_ATTR_NONNULL_L((2));
USTR_CONF_e_PROTO
int ustrp__sc_sub_buf(struct Ustr_pool *, struct Ustr **, size_t, size_t,
                     const void *, size_t)
    USTR__COMPILE_ATTR_NONNULL_L((2, 5));
USTR_CONF_e_PROTO
int ustrp__sc_sub(struct Ustr_pool *, struct Ustr **, size_t, size_t,
                 const struct Ustr *)
    USTR__COMPILE_ATTR_NONNULL_L((2, 5));
USTR_CONF_e_PROTO
int ustrp__sc_sub_subustr(struct Ustr_pool *, struct Ustr **, size_t, size_t,
                          const struct Ustr *, size_t, size_t)
    USTR__COMPILE_ATTR_NONNULL_L((2, 5));
USTR_CONF_e_PROTO
int ustrp__sc_sub_rep_chr(struct Ustr_pool *, struct Ustr **, size_t, 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__sub_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);
USTR_CONF_e_PROTO
int ustrp__sc_sub_vfmt_lim(struct Ustr_pool *, struct Ustr **, size_t, size_t,
                           size_t, const char *, va_list)
    USTR__COMPILE_ATTR_NONNULL_L((2, 6)) USTR__COMPILE_ATTR_FMT(6, 0);
# endif
#endif

#endif