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

0 0
}; };


int NonAsciiNumber(int letter)
static int NonAsciiNumber(int letter)
{ {
// Change non-ascii digit into ascii digit '0' to '9', (or -1 if not) // Change non-ascii digit into ascii digit '0' to '9', (or -1 if not)
const int *p; const int *p;
return 0; 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? // Is this a group of 3 digits which looks like a thousands group?
int ix; int ix;

Loading…
Cancel
Save