This file is indexed.

/usr/include/osl/c/facade.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
/* facade.h
 */
#ifndef OSL_FACADE_H
#define OSL_FACADE_H

extern "C" {
  extern void osl_init();
  // size of move must be at least 8
  extern int checkmate_attack(const char *state, int& limit, char *move);
  extern int checkmate_escape(const char *state, int limit);
  extern int search(const char *state, int seconds, int verbose, char *move);
}

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