sprintf 和 uint64_t 的问题 (avr-libc 2.0.0)

Problem with sprintf and uint64_t (avr-libc 2.0.0)

我正在使用 avr-libc 2.0.0 和 uint64_t 中的函数 sprintf,但它似乎无法正常工作。

代码

uint64_t x = 12ull;
char buffer[30];

int len = sprintf(buffer, "%llu", x);
int buffer_len = strlen(buffer);

returnslen == 2(好)和buffer_len == 0(错!!!)。

相同的代码适用于 uint16_t 和 uint32_t(也适用于签名版本)。

有什么问题吗?它是 avr-libc 的 sprintf 中的错误吗? (我在 gcc 中测试了相同的代码,而不是在 avr-gcc 中,它工作正常)。

谢谢。

avr-libc 未实现使用 ll printf 修饰符进行打印。

But the ll length modifier will to abort the output, as this realization does not operate long long arguments.

这是我用不到 10 分钟写的一个小包装:

#include <stdio.h>
#include <stdint.h>

char *uint64_to_str(uint64_t n, char dest[static 21]) {
    dest += 20;
    *dest-- = 0;
    while (n) {
        *dest-- = (n % 10) + '0';
        n /= 10;
    }
    return dest + 1;
}


#define LOG10_FROM_2_TO_64_PLUS_1  21
#define UINT64_TO_STR(n)  uint64_to_str(n, (char[21]){0})


int main(void) {
  printf("Hello World\n");
  printf("%s", UINT64_TO_STR(123456789ull));
  return 0;
}

将输出:

Hello world
123456789