Welcome to mirror list, hosted at ThFree Co, Russian Federation.

atoff.c « stdlib « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e25ff2917f4b3b8c7dd77afcc0be69bef8ea44f7 (plain)
1
2
3
4
5
6
7
8
#include <stdlib.h>
#include <_ansi.h>

float
atoff (const char *s)
{
  return strtof (s, NULL);
}