This file is indexed.

/usr/include/hfst/parsers/SfstUtf8.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
19
20
21
22
23
24
/*******************************************************************/
/*                                                                 */
/*     File: utf8.h                                                */
/*   Author: Helmut Schmid                                         */
/*  Purpose:                                                       */
/*  Created: Mon Sep  5 17:49:16 2005                              */
/* Modified: Mon Apr  7 08:26:39 2008 (schmid)                     */
/*                                                                 */
/*******************************************************************/

#ifndef _SFST_UTF8_H_
#define _SFST_UTF8_H_

/* @file HfstUtf8.h
   \brief Functions for handling utf-8 strings. */

namespace sfst_utf8 {
  
  unsigned int utf8toint( char *s );
  unsigned int utf8toint( char **s );
  char *int2utf8( unsigned int );
  
}
#endif