From 217c2530e6fe0abfa6db4ff032fca790c1a98db0 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Thu, 18 Apr 2019 17:01:07 +0200 Subject: [PATCH] Remove strtofloat Signed-off-by: Stefan Weil --- src/ccutil/scanutils.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/ccutil/scanutils.h b/src/ccutil/scanutils.h index b2f155804f..a3f6307b62 100644 --- a/src/ccutil/scanutils.h +++ b/src/ccutil/scanutils.h @@ -57,11 +57,6 @@ int vfscanf(FILE* stream, const char *format, va_list ap); // information, as this function attempts to mimic its behavior. int creat(const char *pathname, mode_t mode); -// Convert the specified C-String to a float. Returns the first parsed float, -// or 0.0 if no floating point value could be found. Note that scientific -// floating-point notation is not supported. -double strtofloat(const char* s); - #endif // EMBEDDED #endif // TESSERACT_CCUTIL_SCANUTILS_H_