summaryrefslogtreecommitdiffstats
path: root/libnumtext_num2text.c
blob: 50dc6cae91898b223f54786f8e5464554b72a97a (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* 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, ...)
{
	struct common_num2text_params params;
	size_t i;

	params.outbuf = outbuf;
	params.outbuf_size = outbuf_size;
	params.trailing_zeroes = 0;

	i = 0;
	if (i < num_len) {
		if (num[i] == '+' || num[i] == '-') {
			i += 1;
		} else if (num_len >= sizeof(UNICODE_MINUS)) {
			if (!strncmp(&num[0], UNICODE_MINUS, sizeof(UNICODE_MINUS) - 1))
				i += sizeof(UNICODE_MINUS) - 1;
		}
	}
	params.sign_length = i;
	if (i == num_len)
		goto einval;

	while (i + 1 < num_len && num[i] == '0')
		i += 1;
	params.number_offset = i;

	for (; i < num_len; i++) {
		if (!isdigit(num[i]))
			goto einval;
		else if (num[i] == '0')
			params.trailing_zeroes += 1;
		else
			params.trailing_zeroes = 0;
	}

	switch (lang) {

	case LIBNUMTEXT_SWEDISH:
		return libnumtext_num2text_swedish__(&params, num, num_len, flags);

	default:
	einval:
		errno = EINVAL;
		return -1;
	}
}