This file is indexed.

/usr/include/glbinding/ProcAddress.h is in libglbinding-dev 2.1.1-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
24
25
26
27
28
29
30
31
#pragma once

#include <glbinding/glbinding_api.h>


namespace glbinding 
{


/**
 * @brief
 *   The generic pointer to an OpenGL function.
 */
using ProcAddress = void(*)();

/**
 * @brief
 *   Loads the function pointer of an OpenGL function and returns it.
 *
 * @param[in] name
 *   The name of the OpenGL function, including the 'gl' prefix.
 *
 * @return
 *   The function pointer.
 *
 * This function doesn't cache previously loaded function pointers.
 */
GLBINDING_API ProcAddress getProcAddress(const char * name);


} // namespace glbinding