This file is indexed.

/usr/include/atheme/table.h is in atheme-services 7.2.9-1build1.

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
/*
 * Copyright (c) 2007 William Pitcock <nenolod -at- sacredspiral.co.uk>
 * Rights to this code are as documented in doc/LICENSE.
 *
 * Table rendering class.
 *
 */

#ifndef ATHEME_TABLE_H
#define ATHEME_TABLE_H

typedef struct {
	object_t parent;
	mowgli_list_t rows;
} table_t;

typedef struct {
	int id;
	mowgli_list_t cells;
} table_row_t;

typedef struct {
	int width;	/* only if first row. */
	char *name;
	char *value;
} table_cell_t;

/*
 * Creates a new table object. Use object_unref() to destroy it.
 */
E table_t *table_new(const char *fmt, ...) PRINTFLIKE(1, 2);

/*
 * Renders a table, each line going to callback().
 */
E void table_render(table_t *t, void (*callback)(const char *line, void *data), void *data);

/*
 * Associates a value with a row.
 */
E void table_cell_associate(table_row_t *r, const char *name, const char *value);

/*
 * Associates a row with a table.
 */
E table_row_t *table_row_new(table_t *t);

#endif