summaryrefslogtreecommitdiff
path: root/include/mupdf/fitz/string-util.h
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2018-05-07 16:46:16 +0200
committerTor Andersson <tor.andersson@artifex.com>2018-05-16 12:48:07 +0200
commitf4cb197ad36f5ea3ab834abb41d2641daf152622 (patch)
treee5d7222f7ffb1308c1d060c367f363723151b739 /include/mupdf/fitz/string-util.h
parentb4e9bdcd4daa09e27e112979750d1f85e3c5496e (diff)
downloadmupdf-f4cb197ad36f5ea3ab834abb41d2641daf152622.tar.xz
Purge unused functions.
Diffstat (limited to 'include/mupdf/fitz/string-util.h')
-rw-r--r--include/mupdf/fitz/string-util.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/mupdf/fitz/string-util.h b/include/mupdf/fitz/string-util.h
index 13941d62..fdf47c86 100644
--- a/include/mupdf/fitz/string-util.h
+++ b/include/mupdf/fitz/string-util.h
@@ -142,13 +142,6 @@ int fz_utflen(const char *s);
float fz_strtof(const char *s, char **es);
/*
- fz_strtof_no_exp: Like fz_strtof, but does not recognize exponent
- format. So fz_strtof_no_exp("1.5e20", &tail) will return 1.5 and tail
- will point to "e20".
-*/
-
-float fz_strtof_no_exp(const char *string, char **tailptr);
-/*
fz_grisu: Compute decimal integer m, exp such that:
f = m * 10^exp
m is as short as possible without losing exactness