| 1410 | } |
| 1411 | |
| 1412 | static int cmp_node_by_name(const void *a, const void *b) { |
| 1413 | int ia = *(const int *)a; |
| 1414 | int ib = *(const int *)b; |
| 1415 | int c = strcmp(safe_str(g_sort_nodes[ia].name), safe_str(g_sort_nodes[ib].name)); |
| 1416 | if (c) { |
| 1417 | return c; |
| 1418 | } |
| 1419 | return cmp_i64(g_sort_nodes[ia].id, g_sort_nodes[ib].id); |
| 1420 | } |
| 1421 | |
| 1422 | static int cmp_node_by_file(const void *a, const void *b) { |
| 1423 | int ia = *(const int *)a; |