| 94 | } |
| 95 | |
| 96 | GhbValue* |
| 97 | ghb_string_value(const gchar *str) |
| 98 | { |
| 99 | static GhbValue *gval = NULL; |
| 100 | if (gval == NULL) |
| 101 | gval = json_string(str); |
| 102 | else |
| 103 | json_string_set(gval, str); |
| 104 | return gval; |
| 105 | } |
| 106 | |
| 107 | GhbValue* |
| 108 | ghb_int_value(gint64 ival) |
no outgoing calls
no test coverage detected