summaryrefslogtreecommitdiffstats
path: root/usr/klibc/strtotimex.c
blob: 06240825ba5139fc4023c4b5148140dbd1cad625 (plain)
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
/*
 * strtotimex.c
 *
 * Nonstandard function which takes a string and converts it to a
 * struct timespec/timeval.  Returns a pointer to the first non-numeric
 * character in the string.
 *
 */

#include <ctype.h>
#include <inttypes.h>
#include <stdlib.h>
#include <time.h>
#include <sys/time.h>

char *NAME(const char *str, TIMEX * ts)
{
	int n;
	char *s, *s0;
	__typeof__(ts->FSEC) fs;	/* Fractional seconds */

	ts->tv_sec = strntoumax(str, &s, 10, ~(size_t) 0);
	fs = 0;

	if (*s == '.') {
		s0 = s + 1;

		fs = strntoumax(s0, &s, 10, DECIMALS);
		n = s - s0;

		while (isdigit(*s))
			s++;

		for (; n < DECIMALS; n++)
			fs *= 10;
	}

	ts->FSEC = fs;
	return s;
}