| 1374 | static const CBMDumpEdge *g_sort_edges; |
| 1375 | |
| 1376 | static inline int cmp_i64(int64_t a, int64_t b) { |
| 1377 | return (a > b) - (a < b); |
| 1378 | } |
| 1379 | |
| 1380 | static inline const char *safe_str(const char *s) { |
| 1381 | return s ? s : ""; |
no outgoing calls
no test coverage detected