Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
stdlib
atof.c
pretty
plain
permalink
blame
history
•
6 lines
•
74 B
1
#include <stdlib.h>
2
3
double atof(const char *s)
4
{
5
	return strtod(s, 0);
6
}