| www.delorie.com/djgpp/doc/libc-2.01/libc_626.html | search |
#include <stdlib.h> long double _strtold(const char *s, char **endp);
This function converts as many characters of s that look like a floating point number into one, and sets *endp to point to the first unused character.
The value the string represented.
char *buf = "123ret"; char *bp; long double x = _strtold(buf, &bp);
Go to the first, previous, next, last section, table of contents.
| prev next webmaster | delorie software privacy |
| Copyright © 1997 | Updated Apr 1997 |