This file is indexed.

/usr/include/espeak-ng/encoding.h is in libespeak-ng-dev 1.49.2+dfsg-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
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
/*
 * Copyright (C) 2017 Reece H. Dunn
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, see: <http://www.gnu.org/licenses/>.
 */
#ifndef ESPEAK_NG_ENCODING_H
#define ESPEAK_NG_ENCODING_H

#include <stdint.h>

#ifdef __cplusplus
extern "C"
{
#endif

typedef enum
{
	ESPEAKNG_ENCODING_UNKNOWN,
	ESPEAKNG_ENCODING_US_ASCII,
	ESPEAKNG_ENCODING_ISO_8859_1,
	ESPEAKNG_ENCODING_ISO_8859_2,
	ESPEAKNG_ENCODING_ISO_8859_3,
	ESPEAKNG_ENCODING_ISO_8859_4,
	ESPEAKNG_ENCODING_ISO_8859_5,
	ESPEAKNG_ENCODING_ISO_8859_6,
	ESPEAKNG_ENCODING_ISO_8859_7,
	ESPEAKNG_ENCODING_ISO_8859_8,
	ESPEAKNG_ENCODING_ISO_8859_9,
	ESPEAKNG_ENCODING_ISO_8859_10,
	ESPEAKNG_ENCODING_ISO_8859_11,
	// ISO-8859-12 is not a valid encoding.
	ESPEAKNG_ENCODING_ISO_8859_13,
	ESPEAKNG_ENCODING_ISO_8859_14,
	ESPEAKNG_ENCODING_ISO_8859_15,
	ESPEAKNG_ENCODING_ISO_8859_16,
	ESPEAKNG_ENCODING_KOI8_R,
	ESPEAKNG_ENCODING_ISCII,
	ESPEAKNG_ENCODING_UTF_8,
	ESPEAKNG_ENCODING_ISO_10646_UCS_2,
} espeak_ng_ENCODING;

ESPEAK_NG_API espeak_ng_ENCODING
espeak_ng_EncodingFromName(const char *encoding);

typedef struct espeak_ng_TEXT_DECODER_ espeak_ng_TEXT_DECODER;

ESPEAK_NG_API espeak_ng_TEXT_DECODER *
create_text_decoder(void);

ESPEAK_NG_API void
destroy_text_decoder(espeak_ng_TEXT_DECODER *decoder);

ESPEAK_NG_API espeak_ng_STATUS
text_decoder_decode_string(espeak_ng_TEXT_DECODER *decoder,
                           const char *string,
                           int length,
                           espeak_ng_ENCODING encoding);

ESPEAK_NG_API espeak_ng_STATUS
text_decoder_decode_string_auto(espeak_ng_TEXT_DECODER *decoder,
                                const char *string,
                                int length,
                                espeak_ng_ENCODING encoding);

ESPEAK_NG_API espeak_ng_STATUS
text_decoder_decode_wstring(espeak_ng_TEXT_DECODER *decoder,
                            const wchar_t *string,
                            int length);

ESPEAK_NG_API espeak_ng_STATUS
text_decoder_decode_string_multibyte(espeak_ng_TEXT_DECODER *decoder,
                                     const void *input,
                                     espeak_ng_ENCODING encoding,
                                     int flags);

ESPEAK_NG_API int
text_decoder_eof(espeak_ng_TEXT_DECODER *decoder);

ESPEAK_NG_API uint32_t
text_decoder_getc(espeak_ng_TEXT_DECODER *decoder);

ESPEAK_NG_API uint32_t
text_decoder_peekc(espeak_ng_TEXT_DECODER *decoder);

ESPEAK_NG_API const void *
text_decoder_get_buffer(espeak_ng_TEXT_DECODER *decoder);

#ifdef __cplusplus
}
#endif

#endif