Copies an empty array into the provided buffer. */
| 160 | |
| 161 | /* Copies an empty array into the provided buffer. */ |
| 162 | static inline int |
| 163 | rte_tel_json_empty_array(char *buf, const int len, const int used) |
| 164 | { |
| 165 | return used + __json_snprintf(buf + used, len - used, "[]"); |
| 166 | } |
| 167 | |
| 168 | /* Copies an empty object into the provided buffer. */ |
| 169 | static inline int |