Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
d5af61b1
Commit
d5af61b1
authored
Mar 21, 2005
by
konstantin@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename decimal -> decimal_t, decimal_digit -> decimal_digit_t
parent
752a7873
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
107 additions
and
100 deletions
+107
-100
include/decimal.h
include/decimal.h
+30
-27
sql/log_event.cc
sql/log_event.cc
+3
-3
sql/my_decimal.cc
sql/my_decimal.cc
+2
-2
sql/my_decimal.h
sql/my_decimal.h
+23
-23
strings/decimal.c
strings/decimal.c
+49
-45
No files found.
include/decimal.h
View file @
d5af61b1
...
@@ -20,47 +20,50 @@
...
@@ -20,47 +20,50 @@
typedef
enum
typedef
enum
{
TRUNCATE
=
0
,
HALF_EVEN
,
HALF_UP
,
CEILING
,
FLOOR
}
{
TRUNCATE
=
0
,
HALF_EVEN
,
HALF_UP
,
CEILING
,
FLOOR
}
decimal_round_mode
;
decimal_round_mode
;
typedef
int32
decimal_digit
;
typedef
int32
decimal_digit
_t
;
typedef
struct
st_decimal
{
typedef
struct
st_decimal
_t
{
int
intg
,
frac
,
len
;
int
intg
,
frac
,
len
;
my_bool
sign
;
my_bool
sign
;
decimal_digit
*
buf
;
decimal_digit
_t
*
buf
;
}
decimal
;
}
decimal
_t
;
int
internal_str2dec
(
const
char
*
from
,
decimal
*
to
,
char
**
end
,
my_bool
fixed
);
int
internal_str2dec
(
const
char
*
from
,
decimal_t
*
to
,
char
**
end
,
int
decimal2string
(
decimal
*
from
,
char
*
to
,
int
*
to_len
,
my_bool
fixed
);
int
decimal2string
(
decimal_t
*
from
,
char
*
to
,
int
*
to_len
,
int
fixed_precision
,
int
fixed_decimals
,
int
fixed_precision
,
int
fixed_decimals
,
char
filler
);
char
filler
);
int
decimal2ulonglong
(
decimal
*
from
,
ulonglong
*
to
);
int
decimal2ulonglong
(
decimal
_t
*
from
,
ulonglong
*
to
);
int
ulonglong2decimal
(
ulonglong
from
,
decimal
*
to
);
int
ulonglong2decimal
(
ulonglong
from
,
decimal
_t
*
to
);
int
decimal2longlong
(
decimal
*
from
,
longlong
*
to
);
int
decimal2longlong
(
decimal
_t
*
from
,
longlong
*
to
);
int
longlong2decimal
(
longlong
from
,
decimal
*
to
);
int
longlong2decimal
(
longlong
from
,
decimal
_t
*
to
);
int
decimal2double
(
decimal
*
from
,
double
*
to
);
int
decimal2double
(
decimal
_t
*
from
,
double
*
to
);
int
double2decimal
(
double
from
,
decimal
*
to
);
int
double2decimal
(
double
from
,
decimal
_t
*
to
);
void
decimal_optimize_fraction
(
decimal
*
from
);
void
decimal_optimize_fraction
(
decimal
_t
*
from
);
int
decimal2bin
(
decimal
*
from
,
char
*
to
,
int
precision
,
int
scale
);
int
decimal2bin
(
decimal
_t
*
from
,
char
*
to
,
int
precision
,
int
scale
);
int
bin2decimal
(
char
*
from
,
decimal
*
to
,
int
precision
,
int
scale
);
int
bin2decimal
(
char
*
from
,
decimal
_t
*
to
,
int
precision
,
int
scale
);
int
decimal_size
(
int
precision
,
int
scale
);
int
decimal_size
(
int
precision
,
int
scale
);
int
decimal_bin_size
(
int
precision
,
int
scale
);
int
decimal_bin_size
(
int
precision
,
int
scale
);
int
decimal_result_size
(
decimal
*
from1
,
decimal
*
from2
,
char
op
,
int
param
);
int
decimal_result_size
(
decimal_t
*
from1
,
decimal_t
*
from2
,
char
op
,
int
param
);
int
decimal_add
(
decimal
*
from1
,
decimal
*
from2
,
decimal
*
to
);
int
decimal_sub
(
decimal
*
from1
,
decimal
*
from2
,
decimal
*
to
);
int
decimal_add
(
decimal_t
*
from1
,
decimal_t
*
from2
,
decimal_t
*
to
);
int
decimal_cmp
(
decimal
*
from1
,
decimal
*
from2
);
int
decimal_sub
(
decimal_t
*
from1
,
decimal_t
*
from2
,
decimal_t
*
to
);
int
decimal_mul
(
decimal
*
from1
,
decimal
*
from2
,
decimal
*
to
);
int
decimal_cmp
(
decimal_t
*
from1
,
decimal_t
*
from2
);
int
decimal_div
(
decimal
*
from1
,
decimal
*
from2
,
decimal
*
to
,
int
scale_incr
);
int
decimal_mul
(
decimal_t
*
from1
,
decimal_t
*
from2
,
decimal_t
*
to
);
int
decimal_mod
(
decimal
*
from1
,
decimal
*
from2
,
decimal
*
to
);
int
decimal_div
(
decimal_t
*
from1
,
decimal_t
*
from2
,
decimal_t
*
to
,
int
decimal_round
(
decimal
*
from
,
decimal
*
to
,
int
new_scale
,
int
scale_incr
);
int
decimal_mod
(
decimal_t
*
from1
,
decimal_t
*
from2
,
decimal_t
*
to
);
int
decimal_round
(
decimal_t
*
from
,
decimal_t
*
to
,
int
new_scale
,
decimal_round_mode
mode
);
decimal_round_mode
mode
);
int
decimal_is_zero
(
decimal
*
from
);
int
decimal_is_zero
(
decimal
_t
*
from
);
void
max_decimal
(
int
precision
,
int
frac
,
decimal
*
to
);
void
max_decimal
(
int
precision
,
int
frac
,
decimal
_t
*
to
);
#define string2decimal(A,B,C) internal_str2dec((A), (B), (C), 0)
#define string2decimal(A,B,C) internal_str2dec((A), (B), (C), 0)
#define string2decimal_fixed(A,B,C) internal_str2dec((A), (B), (C), 1)
#define string2decimal_fixed(A,B,C) internal_str2dec((A), (B), (C), 1)
/* set a decimal to zero */
/* set a decimal
_t
to zero */
#define decimal_make_zero(dec) do { \
#define decimal_make_zero(dec) do { \
(dec)->buf[0]=0; \
(dec)->buf[0]=0; \
...
...
sql/log_event.cc
View file @
d5af61b1
...
@@ -3336,7 +3336,7 @@ bool User_var_log_event::write(IO_CACHE* file)
...
@@ -3336,7 +3336,7 @@ bool User_var_log_event::write(IO_CACHE* file)
dec
->
fix_buffer_pointer
();
dec
->
fix_buffer_pointer
();
buf2
[
0
]
=
(
char
)(
dec
->
intg
+
dec
->
frac
);
buf2
[
0
]
=
(
char
)(
dec
->
intg
+
dec
->
frac
);
buf2
[
1
]
=
(
char
)
dec
->
frac
;
buf2
[
1
]
=
(
char
)
dec
->
frac
;
decimal2bin
((
decimal
*
)
val
,
buf2
+
2
,
buf2
[
0
],
buf2
[
1
]);
decimal2bin
((
decimal
_t
*
)
val
,
buf2
+
2
,
buf2
[
0
],
buf2
[
1
]);
val_len
=
decimal_bin_size
(
buf2
[
0
],
buf2
[
1
])
+
2
;
val_len
=
decimal_bin_size
(
buf2
[
0
],
buf2
[
1
])
+
2
;
break
;
break
;
}
}
...
@@ -3403,8 +3403,8 @@ void User_var_log_event::print(FILE* file, bool short_form, LAST_EVENT_INFO* las
...
@@ -3403,8 +3403,8 @@ void User_var_log_event::print(FILE* file, bool short_form, LAST_EVENT_INFO* las
int
str_len
=
sizeof
(
str_buf
)
-
1
;
int
str_len
=
sizeof
(
str_buf
)
-
1
;
int
precision
=
(
int
)
val
[
0
];
int
precision
=
(
int
)
val
[
0
];
int
scale
=
(
int
)
val
[
1
];
int
scale
=
(
int
)
val
[
1
];
decimal_digit
dec_buf
[
10
];
decimal_digit
_t
dec_buf
[
10
];
decimal
dec
;
decimal
_t
dec
;
dec
.
len
=
10
;
dec
.
len
=
10
;
dec
.
buf
=
dec_buf
;
dec
.
buf
=
dec_buf
;
...
...
sql/my_decimal.cc
View file @
d5af61b1
...
@@ -88,7 +88,7 @@ int my_decimal2string(uint mask, const my_decimal *d,
...
@@ -88,7 +88,7 @@ int my_decimal2string(uint mask, const my_decimal *d,
int
result
;
int
result
;
if
(
str
->
alloc
(
length
))
if
(
str
->
alloc
(
length
))
return
check_result
(
mask
,
E_DEC_OOM
);
return
check_result
(
mask
,
E_DEC_OOM
);
result
=
decimal2string
((
decimal
*
)
d
,
(
char
*
)
str
->
ptr
(),
result
=
decimal2string
((
decimal
_t
*
)
d
,
(
char
*
)
str
->
ptr
(),
&
length
,
fixed_prec
,
fixed_dec
,
&
length
,
fixed_prec
,
fixed_dec
,
filler
);
filler
);
str
->
length
(
length
);
str
->
length
(
length
);
...
@@ -172,7 +172,7 @@ int str2my_decimal(uint mask, const char *from, uint length,
...
@@ -172,7 +172,7 @@ int str2my_decimal(uint mask, const char *from, uint length,
charset
=
&
my_charset_bin
;
charset
=
&
my_charset_bin
;
}
}
from_end
=
end
=
(
char
*
)
from
+
length
;
from_end
=
end
=
(
char
*
)
from
+
length
;
err
=
string2decimal
((
char
*
)
from
,
(
decimal
*
)
decimal_value
,
&
end
);
err
=
string2decimal
((
char
*
)
from
,
(
decimal
_t
*
)
decimal_value
,
&
end
);
if
(
end
!=
from_end
&&
!
err
)
if
(
end
!=
from_end
&&
!
err
)
{
{
/* Give warining if there is something other than end space */
/* Give warining if there is something other than end space */
...
...
sql/my_decimal.h
View file @
d5af61b1
...
@@ -69,15 +69,15 @@ inline uint my_decimal_size(uint precision, uint scale)
...
@@ -69,15 +69,15 @@ inline uint my_decimal_size(uint precision, uint scale)
/*
/*
my_decimal class limits 'decimal' type to what we need in MySQL
my_decimal class limits 'decimal
_t
' type to what we need in MySQL
It contains internally all necessary space needed by the instance so
It contains internally all necessary space needed by the instance so
no extra memory is needed. One should call fix_buffer_pointer() function
no extra memory is needed. One should call fix_buffer_pointer() function
when he moves my_decimal objects in memory
when he moves my_decimal objects in memory
*/
*/
class
my_decimal
:
public
decimal
class
my_decimal
:
public
decimal
_t
{
{
decimal_digit
buffer
[
DECIMAL_BUFF_LENGTH
];
decimal_digit
_t
buffer
[
DECIMAL_BUFF_LENGTH
];
public:
public:
...
@@ -97,8 +97,8 @@ class my_decimal :public decimal
...
@@ -97,8 +97,8 @@ class my_decimal :public decimal
}
}
void
fix_buffer_pointer
()
{
buf
=
buffer
;
}
void
fix_buffer_pointer
()
{
buf
=
buffer
;
}
bool
sign
()
const
{
return
decimal
::
sign
;
}
bool
sign
()
const
{
return
decimal
_t
::
sign
;
}
void
sign
(
bool
s
)
{
decimal
::
sign
=
s
;
}
void
sign
(
bool
s
)
{
decimal
_t
::
sign
=
s
;
}
};
};
...
@@ -165,7 +165,7 @@ inline
...
@@ -165,7 +165,7 @@ inline
int
binary2my_decimal
(
uint
mask
,
const
char
*
bin
,
my_decimal
*
d
,
int
prec
,
int
binary2my_decimal
(
uint
mask
,
const
char
*
bin
,
my_decimal
*
d
,
int
prec
,
int
scale
)
int
scale
)
{
{
return
check_result
(
mask
,
bin2decimal
((
char
*
)
bin
,
(
decimal
*
)
d
,
prec
,
return
check_result
(
mask
,
bin2decimal
((
char
*
)
bin
,
(
decimal
_t
*
)
d
,
prec
,
scale
));
scale
));
}
}
...
@@ -173,7 +173,7 @@ int binary2my_decimal(uint mask, const char *bin, my_decimal *d, int prec,
...
@@ -173,7 +173,7 @@ int binary2my_decimal(uint mask, const char *bin, my_decimal *d, int prec,
inline
inline
int
my_decimal_set_zero
(
my_decimal
*
d
)
int
my_decimal_set_zero
(
my_decimal
*
d
)
{
{
decimal_make_zero
(((
decimal
*
)
d
));
decimal_make_zero
(((
decimal
_t
*
)
d
));
return
0
;
return
0
;
}
}
...
@@ -181,7 +181,7 @@ int my_decimal_set_zero(my_decimal *d)
...
@@ -181,7 +181,7 @@ int my_decimal_set_zero(my_decimal *d)
inline
inline
bool
my_decimal_is_zero
(
const
my_decimal
*
decimal_value
)
bool
my_decimal_is_zero
(
const
my_decimal
*
decimal_value
)
{
{
return
decimal_is_zero
((
decimal
*
)
decimal_value
);
return
decimal_is_zero
((
decimal
_t
*
)
decimal_value
);
}
}
...
@@ -189,7 +189,7 @@ inline
...
@@ -189,7 +189,7 @@ inline
int
my_decimal_round
(
uint
mask
,
const
my_decimal
*
from
,
int
scale
,
int
my_decimal_round
(
uint
mask
,
const
my_decimal
*
from
,
int
scale
,
bool
truncate
,
my_decimal
*
to
)
bool
truncate
,
my_decimal
*
to
)
{
{
return
check_result
(
mask
,
decimal_round
((
decimal
*
)
from
,
to
,
scale
,
return
check_result
(
mask
,
decimal_round
((
decimal
_t
*
)
from
,
to
,
scale
,
(
truncate
?
TRUNCATE
:
HALF_UP
)));
(
truncate
?
TRUNCATE
:
HALF_UP
)));
}
}
...
@@ -197,14 +197,14 @@ int my_decimal_round(uint mask, const my_decimal *from, int scale,
...
@@ -197,14 +197,14 @@ int my_decimal_round(uint mask, const my_decimal *from, int scale,
inline
inline
int
my_decimal_floor
(
uint
mask
,
const
my_decimal
*
from
,
my_decimal
*
to
)
int
my_decimal_floor
(
uint
mask
,
const
my_decimal
*
from
,
my_decimal
*
to
)
{
{
return
check_result
(
mask
,
decimal_round
((
decimal
*
)
from
,
to
,
0
,
FLOOR
));
return
check_result
(
mask
,
decimal_round
((
decimal
_t
*
)
from
,
to
,
0
,
FLOOR
));
}
}
inline
inline
int
my_decimal_ceiling
(
uint
mask
,
const
my_decimal
*
from
,
my_decimal
*
to
)
int
my_decimal_ceiling
(
uint
mask
,
const
my_decimal
*
from
,
my_decimal
*
to
)
{
{
return
check_result
(
mask
,
decimal_round
((
decimal
*
)
from
,
to
,
0
,
CEILING
));
return
check_result
(
mask
,
decimal_round
((
decimal
_t
*
)
from
,
to
,
0
,
CEILING
));
}
}
...
@@ -219,7 +219,7 @@ int my_decimal2int(uint mask, const my_decimal *d, my_bool unsigned_flag,
...
@@ -219,7 +219,7 @@ int my_decimal2int(uint mask, const my_decimal *d, my_bool unsigned_flag,
{
{
my_decimal
rounded
;
my_decimal
rounded
;
/* decimal_round can return only E_DEC_TRUNCATED */
/* decimal_round can return only E_DEC_TRUNCATED */
decimal_round
((
decimal
*
)
d
,
&
rounded
,
0
,
HALF_UP
);
decimal_round
((
decimal
_t
*
)
d
,
&
rounded
,
0
,
HALF_UP
);
return
check_result
(
mask
,
(
unsigned_flag
?
return
check_result
(
mask
,
(
unsigned_flag
?
decimal2ulonglong
(
&
rounded
,
(
ulonglong
*
)
l
)
:
decimal2ulonglong
(
&
rounded
,
(
ulonglong
*
)
l
)
:
decimal2longlong
(
&
rounded
,
l
)));
decimal2longlong
(
&
rounded
,
l
)));
...
@@ -230,14 +230,14 @@ inline
...
@@ -230,14 +230,14 @@ inline
int
my_decimal2double
(
uint
mask
,
const
my_decimal
*
d
,
double
*
result
)
int
my_decimal2double
(
uint
mask
,
const
my_decimal
*
d
,
double
*
result
)
{
{
/* No need to call check_result as this will always succeed */
/* No need to call check_result as this will always succeed */
return
decimal2double
((
decimal
*
)
d
,
result
);
return
decimal2double
((
decimal
_t
*
)
d
,
result
);
}
}
inline
inline
int
str2my_decimal
(
uint
mask
,
const
char
*
str
,
my_decimal
*
d
,
char
**
end
)
int
str2my_decimal
(
uint
mask
,
const
char
*
str
,
my_decimal
*
d
,
char
**
end
)
{
{
return
check_result
(
mask
,
string2decimal
(
str
,
(
decimal
*
)
d
,
end
));
return
check_result
(
mask
,
string2decimal
(
str
,
(
decimal
_t
*
)
d
,
end
));
}
}
...
@@ -255,7 +255,7 @@ int string2my_decimal(uint mask, const String *str, my_decimal *d)
...
@@ -255,7 +255,7 @@ int string2my_decimal(uint mask, const String *str, my_decimal *d)
inline
inline
int
double2my_decimal
(
uint
mask
,
double
val
,
my_decimal
*
d
)
int
double2my_decimal
(
uint
mask
,
double
val
,
my_decimal
*
d
)
{
{
return
check_result
(
mask
,
double2decimal
(
val
,
(
decimal
*
)
d
));
return
check_result
(
mask
,
double2decimal
(
val
,
(
decimal
_t
*
)
d
));
}
}
...
@@ -269,7 +269,7 @@ int int2my_decimal(uint mask, longlong i, my_bool unsigned_flag, my_decimal *d)
...
@@ -269,7 +269,7 @@ int int2my_decimal(uint mask, longlong i, my_bool unsigned_flag, my_decimal *d)
inline
inline
void
my_decimal_neg
(
st_decimal
*
arg
)
void
my_decimal_neg
(
decimal_t
*
arg
)
{
{
decimal_neg
(
arg
);
decimal_neg
(
arg
);
}
}
...
@@ -279,7 +279,7 @@ inline
...
@@ -279,7 +279,7 @@ inline
int
my_decimal_add
(
uint
mask
,
my_decimal
*
res
,
const
my_decimal
*
a
,
int
my_decimal_add
(
uint
mask
,
my_decimal
*
res
,
const
my_decimal
*
a
,
const
my_decimal
*
b
)
const
my_decimal
*
b
)
{
{
return
check_result
(
mask
,
decimal_add
((
decimal
*
)
a
,
(
decimal
*
)
b
,
res
));
return
check_result
(
mask
,
decimal_add
((
decimal
_t
*
)
a
,
(
decimal_t
*
)
b
,
res
));
}
}
...
@@ -287,7 +287,7 @@ inline
...
@@ -287,7 +287,7 @@ inline
int
my_decimal_sub
(
uint
mask
,
my_decimal
*
res
,
const
my_decimal
*
a
,
int
my_decimal_sub
(
uint
mask
,
my_decimal
*
res
,
const
my_decimal
*
a
,
const
my_decimal
*
b
)
const
my_decimal
*
b
)
{
{
return
check_result
(
mask
,
decimal_sub
((
decimal
*
)
a
,
(
decimal
*
)
b
,
res
));
return
check_result
(
mask
,
decimal_sub
((
decimal
_t
*
)
a
,
(
decimal_t
*
)
b
,
res
));
}
}
...
@@ -295,7 +295,7 @@ inline
...
@@ -295,7 +295,7 @@ inline
int
my_decimal_mul
(
uint
mask
,
my_decimal
*
res
,
const
my_decimal
*
a
,
int
my_decimal_mul
(
uint
mask
,
my_decimal
*
res
,
const
my_decimal
*
a
,
const
my_decimal
*
b
)
const
my_decimal
*
b
)
{
{
return
check_result
(
mask
,
decimal_mul
((
decimal
*
)
a
,
(
decimal
*
)
b
,
res
));
return
check_result
(
mask
,
decimal_mul
((
decimal
_t
*
)
a
,
(
decimal_t
*
)
b
,
res
));
}
}
...
@@ -303,7 +303,7 @@ inline
...
@@ -303,7 +303,7 @@ inline
int
my_decimal_div
(
uint
mask
,
my_decimal
*
res
,
const
my_decimal
*
a
,
int
my_decimal_div
(
uint
mask
,
my_decimal
*
res
,
const
my_decimal
*
a
,
const
my_decimal
*
b
,
int
div_scale_inc
)
const
my_decimal
*
b
,
int
div_scale_inc
)
{
{
return
check_result
(
mask
,
decimal_div
((
decimal
*
)
a
,
(
decimal
*
)
b
,
res
,
return
check_result
(
mask
,
decimal_div
((
decimal
_t
*
)
a
,
(
decimal_t
*
)
b
,
res
,
div_scale_inc
));
div_scale_inc
));
}
}
...
@@ -312,7 +312,7 @@ inline
...
@@ -312,7 +312,7 @@ inline
int
my_decimal_mod
(
uint
mask
,
my_decimal
*
res
,
const
my_decimal
*
a
,
int
my_decimal_mod
(
uint
mask
,
my_decimal
*
res
,
const
my_decimal
*
a
,
const
my_decimal
*
b
)
const
my_decimal
*
b
)
{
{
return
check_result
(
mask
,
decimal_mod
((
decimal
*
)
a
,
(
decimal
*
)
b
,
res
));
return
check_result
(
mask
,
decimal_mod
((
decimal
_t
*
)
a
,
(
decimal_t
*
)
b
,
res
));
}
}
...
@@ -320,14 +320,14 @@ int my_decimal_mod(uint mask, my_decimal *res, const my_decimal *a,
...
@@ -320,14 +320,14 @@ int my_decimal_mod(uint mask, my_decimal *res, const my_decimal *a,
inline
inline
int
my_decimal_cmp
(
const
my_decimal
*
a
,
const
my_decimal
*
b
)
int
my_decimal_cmp
(
const
my_decimal
*
a
,
const
my_decimal
*
b
)
{
{
return
decimal_cmp
((
decimal
*
)
a
,
(
decimal
*
)
b
);
return
decimal_cmp
((
decimal
_t
*
)
a
,
(
decimal_t
*
)
b
);
}
}
inline
inline
void
max_my_decimal
(
my_decimal
*
to
,
int
precision
,
int
frac
)
void
max_my_decimal
(
my_decimal
*
to
,
int
precision
,
int
frac
)
{
{
DBUG_ASSERT
(
precision
<=
DECIMAL_MAX_LENGTH
);
DBUG_ASSERT
(
precision
<=
DECIMAL_MAX_LENGTH
);
max_decimal
(
precision
,
frac
,
(
decimal
*
)
to
);
max_decimal
(
precision
,
frac
,
(
decimal
_t
*
)
to
);
}
}
#endif
/*my_decimal_h*/
#endif
/*my_decimal_h*/
...
...
strings/decimal.c
View file @
d5af61b1
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment