mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-15 05:27:59 +08:00
22 lines
409 B
C
22 lines
409 B
C
#include <string.h>
|
|
#include <stdio.h>
|
|
|
|
#include <ryu/ryu.h>
|
|
#include <ryu/ryu2.h>
|
|
|
|
int main() {
|
|
char* result = d2s(3.14);
|
|
if (strcmp(result, "3.14E0") != 0) {
|
|
printf("Unexpected ryu: %s\n", result);
|
|
return 1;
|
|
}
|
|
|
|
result = d2fixed(3.14159, 1);
|
|
if (strcmp(result, "3.1") != 0) {
|
|
printf("Unexpected ryu_printf: %s\n", result);
|
|
return 2;
|
|
}
|
|
|
|
return 0;
|
|
}
|