This file is indexed.

/usr/include/allegro5/clipboard.h is in liballegro5-dev 2:5.2.2-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
32
33
34
35
36
37
38
39
40
41
42
/*         ______   ___    ___
 *        /\  _  \ /\_ \  /\_ \
 *        \ \ \L\ \\//\ \ \//\ \      __     __   _ __   ___
 *         \ \  __ \ \ \ \  \ \ \   /'__`\ /'_ `\/\`'__\/ __`\
 *          \ \ \/\ \ \_\ \_ \_\ \_/\  __//\ \L\ \ \ \//\ \L\ \
 *           \ \_\ \_\/\____\/\____\ \____\ \____ \ \_\\ \____/
 *            \/_/\/_/\/____/\/____/\/____/\/___L\ \/_/ \/___/
 *                                           /\____/
 *                                           \_/__/
 *
 *      Clipboard handling.
 *
 *      See readme.txt for copyright information.
 */

#ifndef __al_included_allegro5_clipboard_h
#define __al_included_allegro5_clipboard_h

#include "allegro5/base.h"
#include "allegro5/display.h"
#include "allegro5/utf8.h"

#ifdef __cplusplus
   extern "C" {
#endif

AL_FUNC(char *, al_get_clipboard_text, (ALLEGRO_DISPLAY *display));
AL_FUNC(bool, al_set_clipboard_text, (ALLEGRO_DISPLAY *display, const char *text));
AL_FUNC(bool, al_clipboard_has_text, (ALLEGRO_DISPLAY *display));

#ifdef __cplusplus
   }
#endif

#endif

/*
 * Local Variables:
 * c-basic-offset: 3
 * indent-tabs-mode: nil
 * End:
 */