This file is indexed.

/usr/include/openct/logging.h is in libopenct1-dev 0.6.20-1.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
/*
 * Logging functions
 *
 * Copyright (C) 2003, Olaf Kirch <okir@suse.de>
 */

#ifndef OPENCT_LOGGING_H
#define OPENCT_LOGGING_H

#ifdef __cplusplus
extern "C" {
#endif

extern void		ct_log_destination(const char *);

extern void		ct_error(const char *, ...);
extern void		ct_debug(const char *, ...);

extern const char *	ct_hexdump(const void *, size_t);

#ifdef __cplusplus
}
#endif

#endif /* OPENCT_LOGGING_H */