/
githubmirror
/
libfastjson
Обзор
Документация
Войти
/
githubmirror
/
libfastjson
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/test_float.c
24 строки
848 B
Jan Gerhards
testbench: add test for floating point representation
26 ноя 2016, 19:43
26 ноя 2016, 19:43
d59b69d
Код
Авторство
О чём код?
/* Copyright (C) 2016 by Rainer Gerhards * Released under ASL 2.0 */ #include "config.h" #include <stdio.h> #include "../json_object.h" #include "../json_tokener.h" int main(void) { fjson_object *json; json = fjson_object_new_double(1.0); printf("json = %s\n", json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY)); json_object_put(json); json = fjson_object_new_double(1.23); printf("json = %s\n", json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY)); json_object_put(json); json = fjson_object_new_double(123456789.0); printf("json = %s\n", json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY)); json_object_put(json); json = fjson_object_new_double(123456789.123); printf("json = %s\n", json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY)); json_object_put(json); return 0; }