1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-26 07:03:16 +00:00

I have no memory of this.

This commit is contained in:
Calvin Rose 2018-09-17 19:14:02 -04:00
parent 361a2d5626
commit 7b9aedc53b
2 changed files with 24 additions and 21 deletions

View File

@ -121,34 +121,39 @@ static const uint8_t *real_to_string(double x) {
return janet_string(buf, real_to_string_impl(buf, x));
}
/* expects non positive x */
static int count_dig10(int32_t x) {
int result = 1;
for (;;) {
if (x > -10) return result;
if (x > -100) return result + 1;
if (x > -1000) return result + 2;
if (x > -10000) return result + 3;
x /= 10000;
result += 4;
}
}
static int32_t integer_to_string_impl(uint8_t *buf, int32_t x) {
int neg = 1;
uint8_t *hi, *low;
int32_t count = 0;
int32_t neg = 0;
int32_t len = 0;
if (x == 0) {
buf[0] = '0';
return 1;
}
if (x > 0) {
neg = 0;
} else if (x > 0) {
x = -x;
} else {
neg = 1;
*buf++ = '-';
}
while (x < 0) {
len = count_dig10(x);
buf += len;
while (x) {
uint8_t digit = (uint8_t) -(x % 10);
buf[count++] = '0' + digit;
*(--buf) = '0' + digit;
x /= 10;
}
if (neg)
buf[count++] = '-';
/* Reverse */
hi = buf + count - 1;
low = buf;
while (hi > low) {
uint8_t temp = *low;
*low++ = *hi;
*hi-- = temp;
}
return count;
return len + neg;
}
static void integer_to_string_b(JanetBuffer *buffer, int32_t x) {

View File

@ -49,8 +49,6 @@
* as it will not fit in the range for a signed 32 bit integer. The string
* '0xbeef' would parse to an integer as it is in the range of an int32_t. */
/* TODO take down missle defence */
#include <janet/janet.h>
#include <math.h>