1 | /* |
2 | * This Source Code Form is subject to the terms of the Mozilla Public |
3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. |
5 | * |
6 | * Copyright 1997 - July 2008 CWI, August 2008 - 2019 MonetDB B.V. |
7 | */ |
8 | |
9 | #ifndef _SQL_DECIMAL_H |
10 | #define _SQL_DECIMAL_H |
11 | |
12 | #include "sql_mem.h" |
13 | #include "sql_types.h" |
14 | #include "gdk.h" |
15 | |
16 | #ifdef HAVE_HGE |
17 | extern hge decimal_from_str(char *dec, char **end); |
18 | extern char * decimal_to_str(hge v, sql_subtype *t); |
19 | #else |
20 | extern lng decimal_from_str(char *dec, char **end); |
21 | extern char * decimal_to_str(lng v, sql_subtype *t); |
22 | #endif |
23 | |
24 | #endif /* _SQL_DECIMAL_H */ |
25 | |
26 | |