summaryrefslogtreecommitdiff
path: root/src/stdlib/strtof.c
blob: 2dc349a926e5750f02e6a0569559f28fdb4e4e5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdlib.h>
#include "floatscan.h"
#include "stdio_impl.h"

float strtof(const char *s, char **p)
{
	FILE f = {
		.buf = (void *)s, .rpos = (void *)s,
		.rend = (void *)-1, .lock = -1
	};
	off_t cnt;
	float y = __floatscan(&f, -1, 0, 1, &cnt);
	if (p) *p = (char *)s + cnt;
	return y;
}