File: hs-double-conversion.h

package info (click to toggle)
haskell-double-conversion 2.0.2.0%2Bds1-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 116 kB
  • sloc: haskell: 222; cpp: 108; ansic: 23; makefile: 5
file content (28 lines) | stat: -rw-r--r-- 798 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef _hs_double_conversion_h
#define _hs_double_conversion_h

#ifdef __cplusplus
extern "C"
{
#endif

#include <stddef.h>

int _hs_ToShortestLength(void);
int _hs_Text_ToShortest(double value, uint16_t *buf);
int _hs_ToShortest(double value, char *buf);
int _hs_ToFixedLength(void);
int _hs_Text_ToFixed(double value, uint16_t *buf, int ndigits);
int _hs_ToFixed(double value, char *buf, int ndigits);
int _hs_ToExponentialLength(void);
int _hs_Text_ToExponential(double value, uint16_t *buf, int ndigits);
int _hs_ToExponential(double value, char *buf, int ndigits);
int _hs_ToPrecisionLength(void);
int _hs_Text_ToPrecision(double value, uint16_t *buf, int ndigits);
int _hs_ToPrecision(double value, char *buf, int ndigits);

#ifdef __cplusplus
}
#endif

#endif /* _hs_double_conversion_h */