This file is indexed.

/usr/include/osl/readme.h is in libosl-dev 0.4.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
/* readme.h
 */
#ifndef OSL_README_H
#define OSL_README_H

/**
 * @mainpage
 * Open Shogi Library
 * 
 * 初めての方は,以下のあたりからどうぞ:
 * - random_play.cc ランダムプレイヤ
 * - <a href="namespaces.html">ネームスペース一覧</a>
 *
 * 将棋用語からの索引:
 * - 駒 osl::Piece
 * - 駒の種類 osl::Ptype
 * - 指手 osl::Move
 * - 先手/後手 osl::Player
 * - 方向 osl::Direction
 * - 局面 osl::state::SimpleState
 * 
 * 公式ページに戻る http://gps.tanaka.ecc.u-tokyo.ac.jp/osl/
 */

/**
 * osl 一般
 * 
 * 将棋盤や基本的なデータ型など.
 */
namespace osl
{
}

#endif /* OSL_README_H */
// ;;; Local Variables:
// ;;; mode:c++
// ;;; c-basic-offset:2
// ;;; End: