| 116 | } |
| 117 | |
| 118 | GhbValue* |
| 119 | ghb_double_value(gdouble dval) |
| 120 | { |
| 121 | static GhbValue *gval = NULL; |
| 122 | if (gval == NULL) |
| 123 | gval = json_real(dval); |
| 124 | else |
| 125 | json_real_set(gval, dval); |
| 126 | return gval; |
| 127 | } |
| 128 | |
| 129 | GhbValue* |
| 130 | ghb_boolean_value(gboolean bval) |
no outgoing calls
no test coverage detected