123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /*
- * 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_TOKENIZER_H
- #define ESPEAK_NG_TOKENIZER_H
-
- #ifdef __cplusplus
- extern "C"
- {
- #endif
-
- typedef struct espeak_ng_TOKENIZER_ espeak_ng_TOKENIZER;
-
- ESPEAK_NG_API espeak_ng_TOKENIZER *
- create_tokenizer(void);
-
- ESPEAK_NG_API void
- destroy_tokenizer(espeak_ng_TOKENIZER *tokenizer);
-
- typedef enum
- {
- ESPEAKNG_TOKENIZER_OPTION_TEXT = 0,
- } espeak_ng_TOKENIZER_OPTIONS;
-
- ESPEAK_NG_API int
- tokenizer_reset(espeak_ng_TOKENIZER *tokenizer,
- espeak_ng_TEXT_DECODER *decoder,
- espeak_ng_TOKENIZER_OPTIONS options);
-
- typedef enum
- {
- ESPEAKNG_TOKEN_END_OF_BUFFER,
- ESPEAKNG_TOKEN_UNKNOWN,
- ESPEAKNG_TOKEN_NEWLINE,
- ESPEAKNG_TOKEN_PARAGRAPH,
- ESPEAKNG_TOKEN_WHITESPACE,
- ESPEAKNG_TOKEN_WORD_UPPERCASE,
- ESPEAKNG_TOKEN_WORD_LOWERCASE,
- ESPEAKNG_TOKEN_WORD_MIXEDCASE,
- ESPEAKNG_TOKEN_WORD_CAPITALIZED,
- ESPEAKNG_TOKEN_FULL_STOP,
- ESPEAKNG_TOKEN_QUESTION_MARK,
- ESPEAKNG_TOKEN_EXCLAMATION_MARK,
- ESPEAKNG_TOKEN_COMMA,
- ESPEAKNG_TOKEN_COLON,
- ESPEAKNG_TOKEN_SEMICOLON,
- ESPEAKNG_TOKEN_ELLIPSIS,
- ESPEAKNG_TOKEN_PUNCTUATION,
- ESPEAKNG_TOKEN_SYMBOL,
- } espeak_ng_TOKEN_TYPE;
-
- ESPEAK_NG_API espeak_ng_TOKEN_TYPE
- tokenizer_read_next_token(espeak_ng_TOKENIZER *tokenizer);
-
- ESPEAK_NG_API const char *
- tokenizer_get_token_text(espeak_ng_TOKENIZER *tokenizer);
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
|