This file is indexed.

/usr/include/gwenhywfar4/gwenhywfar/urlfns.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
49
50
51
52
53
/***************************************************************************
 $RCSfile$
                             -------------------
    cvs         : $Id$
    begin       : Fri May 07 2004
    copyright   : (C) 2004 by Martin Preuss
    email       : martin@libchipcard.de

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

#ifndef GWEN_URLFNS_H
#define GWEN_URLFNS_H

#include <gwenhywfar/url.h>
#include <gwenhywfar/buffer.h>

#ifdef __cplusplus
extern "C" {
#endif


/**
 * Parses the given string and returns an URL object (if the string is ok).
 */
GWENHYWFAR_API
GWEN_URL *GWEN_Url_fromString(const char *str);

GWENHYWFAR_API
int GWEN_Url_toString(const GWEN_URL *url, GWEN_BUFFER *buf);

GWENHYWFAR_API
GWEN_URL *GWEN_Url_fromCommandString(const char *str);

GWENHYWFAR_API
int GWEN_Url_toCommandString(const GWEN_URL *url, GWEN_BUFFER *buf);


/**
 * Creates a short string for user interface output. This means no password or
 * user id is shown, and no URL vars either.
 */
GWENHYWFAR_API
void GWEN_Url_toUiShortString(const GWEN_URL *url, GWEN_BUFFER *buf);


#ifdef __cplusplus
} /* __cplusplus */
#endif


#endif /* HTTPURLFNS_H */