double json_real_value(const json_t *real);
double json_number_value(const json_t *json);
-int json_string_set(const json_t *string, const char *value);
-int json_integer_set(const json_t *integer, int value);
-int json_real_set(const json_t *real, double value);
+int json_string_set(json_t *string, const char *value);
+int json_integer_set(json_t *integer, int value);
+int json_real_set(json_t *real, double value);
/* loading, printing */
return json_to_string(json)->value;
}
-int json_string_set(const json_t *json, const char *value)
+int json_string_set(json_t *json, const char *value)
{
char *dup;
json_string_t *string;
return json_to_integer(json)->value;
}
-int json_integer_set(const json_t *json, int value)
+int json_integer_set(json_t *json, int value)
{
if(!json_is_integer(json))
return -1;
return json_to_real(json)->value;
}
-int json_real_set(const json_t *json, double value)
+int json_real_set(json_t *json, double value)
{
if(!json_is_real(json))
return 0;