| 105 | } |
| 106 | |
| 107 | GhbValue* |
| 108 | ghb_int_value(gint64 ival) |
| 109 | { |
| 110 | static GhbValue *gval = NULL; |
| 111 | if (gval == NULL) |
| 112 | gval = json_integer(ival); |
| 113 | else |
| 114 | json_integer_set(gval, ival); |
| 115 | return gval; |
| 116 | } |
| 117 | |
| 118 | GhbValue* |
| 119 | ghb_double_value(gdouble dval) |
no outgoing calls
no test coverage detected