arbitrary precision decimal numbers

strings/llstr.c:
  small optimization
BitKeeper/etc/ignore:
  Added strings/test_decimal to the ignore list
This commit is contained in:
unknown 2004-10-18 14:06:46 +02:00
commit decc71e636
5 changed files with 1714 additions and 9 deletions

View file

@ -30,6 +30,6 @@
char *llstr(longlong value,char *buff)
{
longlong2str(value,buff,-10);
longlong10_to_str(value,buff,-10);
return buff;
}