This file is indexed.

/usr/include/gwenhywfar4/gwenhywfar/htmlprops_be.h is in libgwenhywfar-core-dev 4.15.3-5+b1.

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
/***************************************************************************
 begin       : Sat Feb 20 2010
 copyright   : (C) 2010 by Martin Preuss
 email       : martin@libchipcard.de

 ***************************************************************************
 *          Please see toplevel file COPYING for license details           *
 ***************************************************************************/


#ifndef HTMLPROPS_BE_H
#define HTMLPROPS_BE_H


typedef struct HTML_PROPS HTML_PROPS;

#define HTML_PROPS_NOCOLOR 0xffffffff

#include <gwenhywfar/htmlfont_be.h>


#ifdef __cplusplus
extern "C" {
#endif


GWENHYWFAR_API HTML_PROPS *HtmlProps_new(void);
GWENHYWFAR_API void HtmlProps_free(HTML_PROPS *pr);
GWENHYWFAR_API void HtmlProps_Attach(HTML_PROPS *pr);
GWENHYWFAR_API HTML_PROPS *HtmlProps_dup(const HTML_PROPS *pr);


GWENHYWFAR_API HTML_FONT *HtmlProps_GetFont(const HTML_PROPS *pr);
GWENHYWFAR_API void HtmlProps_SetFont(HTML_PROPS *pr, HTML_FONT *fnt);

GWENHYWFAR_API uint32_t HtmlProps_GetForegroundColor(const HTML_PROPS *pr);
GWENHYWFAR_API void HtmlProps_SetForegroundColor(HTML_PROPS *pr, uint32_t c);

GWENHYWFAR_API uint32_t HtmlProps_GetBackgroundColor(const HTML_PROPS *pr);
GWENHYWFAR_API void HtmlProps_SetBackgroundColor(HTML_PROPS *pr, uint32_t c);


#ifdef __cplusplus
}
#endif


#endif