/usr/include/libexttextcat/textcat_properties.h is in libexttextcat-dev 3.4.4-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 | #ifndef _TEXTCAT_PROPERTIES_H_
#define _TEXTCAT_PROPERTIES_H_
enum textcat_Property_s
{
TCPROP_UTF8AWARE = 0,
TCPROP_MINIMUM_DOCUMENT_SIZE = 1,
TCPROP_LAST
};
enum textcat_Bool_s
{
TC_FALSE = 0,
TC_TRUE = 1
};
typedef enum textcat_Property_s textcat_Property;
#endif
|