This file is indexed.

/usr/include/hfst/parsers/SfstBasic.h is in libhfst-dev 3.13.0~r3461-2.

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

#include <stdio.h>

/* @file SfstBasic.h
   \brief Basic functions for string handling. */

namespace sfst_basic {

  extern bool Switch_Bytes;

  char* fst_strdup(const char* pString);
  int read_string( char *buffer, int size, FILE *file );
  size_t read_num( void *p, size_t size, FILE *file );

}
#endif