aboutsummaryrefslogtreecommitdiff
path: root/third_party/skia_shared/SkFloatToDecimal.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/skia_shared/SkFloatToDecimal.h')
-rw-r--r--third_party/skia_shared/SkFloatToDecimal.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/third_party/skia_shared/SkFloatToDecimal.h b/third_party/skia_shared/SkFloatToDecimal.h
deleted file mode 100644
index 376b093b2..000000000
--- a/third_party/skia_shared/SkFloatToDecimal.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Copyright 2017 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef SkFloatToDecimal_DEFINED
-#define SkFloatToDecimal_DEFINED
-
-namespace pdfium {
-namespace skia {
-
-constexpr unsigned kMaximumSkFloatToDecimalLength = 49;
-
-/** \fn SkFloatToDecimal
- Convert a float into a decimal string.
-
- The resulting string will be in the form `[-]?([0-9]*\.)?[0-9]+` (It does
- not use scientific notation.) and `sscanf(output, "%f", &x)` will return
- the original value if the value is finite. This function accepts all
- possible input values.
-
- INFINITY and -INFINITY are rounded to FLT_MAX and -FLT_MAX.
-
- NAN values are converted to 0.
-
- This function will always add a terminating '\0' to the output.
-
- @param value Any floating-point number
- @param output The buffer to write the string into. Must be non-null.
-
- @return strlen(output)
-*/
-unsigned SkFloatToDecimal(float value, char output[kMaximumSkFloatToDecimalLength]);
-
-} // namespace skia
-} // namespace pdfium
-
-#endif // SkFloatToDecimal_DEFINED