This file is indexed.

/usr/include/bglibs/iobuf/iobuf.h is in libbg1-dev 1.106-3.

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
#ifndef IO_BUF__H__
#define IO_BUF__H__

#include <iobuf/common.h>
#include <iobuf/ibuf.h>
#include <iobuf/obuf.h>

/** \addtogroup iobuf
 * @{ */

/** \name Mass copying functions. */

int iobuf_copy(ibuf* in, obuf* out);
int iobuf_copyflush(ibuf* in, obuf* out);
int ibuf_copytofd(ibuf* in, int out);
int obuf_copyfromfd(int in, obuf* out);

/** @} */

/** @} */

#endif