blob: fafe436be96d2456daf8504a53fee8cfe347a73c (
plain) (
blame)
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
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
ssize_t
libnumtext_num2text(char *outbuf, size_t outbuf_size, const char *num, size_t num_len,
enum libnumtext_language lang, uint32_t flags, ...)
{
size_t i;
i = 0;
if (i < num_len) {
if (num[i] == '+' || num[i] == '-')
i += 1;
else if (!strncmp(&num[0], UNICODE_MINUS, sizeof(UNICODE_MINUS) - 1))
i += sizeof(UNICODE_MINUS) - 1;
}
if (i == num_len)
goto einval;
for (; i < num_len; i++)
if (!isdigit(num[i]))
goto einval;
switch (lang) {
case LIBNUMTEXT_SWEDISH:
return libnumtext_num2text_swedish__(outbuf, outbuf_size, num, num_len, flags);
default:
einval:
errno = EINVAL;
return -1;
}
}
|