Browse Source

tr_languages.c: Fix -Wmissing-prototypes warnings.

master
Reece H. Dunn 7 years ago
parent
commit
f605f79465
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/libespeak-ng/tr_languages.c

+ 2
- 2
src/libespeak-ng/tr_languages.c View File

@@ -413,7 +413,7 @@ static void SetCyrillicLetters(Translator *tr)
SetLetterBits(tr, LETTERGP_VOWEL2, (char *)ru_vowels);
}

void SetIndicLetters(Translator *tr)
static void SetIndicLetters(Translator *tr)
{
// Set letter types for Indic scripts, Devanagari, Tamill, etc
static const char dev_consonants2[] = { 0x02, 0x03, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x7b, 0x7c, 0x7e, 0x7f, 0 };
@@ -438,7 +438,7 @@ void SetIndicLetters(Translator *tr)
tr->langopts.suffix_add_e = tr->letter_bits_offset + 0x4d; // virama
}

void SetupTranslator(Translator *tr, const short *lengths, const unsigned char *amps)
static void SetupTranslator(Translator *tr, const short *lengths, const unsigned char *amps)
{
if (lengths != NULL)
memcpy(tr->stress_lengths, lengths, sizeof(tr->stress_lengths));

Loading…
Cancel
Save