/usr/include/sfst-1/sfst/utf8.h is in libsfst1-1.4-dev 1.4.6g-3.
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 | /*******************************************************************/
/* */
/* 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 _UTF8_H_
#define _UTF8_H_
namespace SFST {
unsigned int utf8toint( char *s );
unsigned int utf8toint( char **s );
char *int2utf8( unsigned int );
}
#endif
|