This file is indexed.

/usr/include/rxp/url.h is in librxp-dev 1.5.0-1.

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
/* url.h	-- Henry Thompson
 *
 * $Header: /disk/b/cvsroot/ltg/RXP/include/url.h,v 1.9 2008/05/29 10:51:54 richard Exp $
 */

#ifndef _URL_H
#define _URL_H

#include <stdio.h>
#include "stdio16.h"
#include "charset.h"

extern STD_API int init_url(void);
extern STD_API void deinit_url(void);

extern STD_API char8 *
    url_merge(const char8 *url, const char8 *base,
	      char8 **scheme, char8 **host, int *port, char8 **path);
extern STD_API FILE16 *url_open(const char8 *url, const char8 *base, 
			        const char8 *type, char8 **merged_url);
extern STD_API char8 *default_base_url(void);

#endif