Browse Source

numbers.c: Fix -Wmissing-prototypes warnings.

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

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

@@ -548,7 +548,7 @@ static const int number_ranges[] = {
0
};

int NonAsciiNumber(int letter)
static int NonAsciiNumber(int letter)
{
// Change non-ascii digit into ascii digit '0' to '9', (or -1 if not)
const int *p;
@@ -1711,7 +1711,7 @@ static int LookupNum3(Translator *tr, int value, char *ph_out, int suppress_null
return 0;
}

bool CheckThousandsGroup(char *word, int group_len)
static bool CheckThousandsGroup(char *word, int group_len)
{
// Is this a group of 3 digits which looks like a thousands group?
int ix;

Loading…
Cancel
Save