| 1328 | */ |
| 1329 | |
| 1330 | static void |
| 1331 | cgi_sort_variables(void) |
| 1332 | { |
| 1333 | if (form_count < 2) |
| 1334 | return; |
| 1335 | |
| 1336 | qsort(form_vars, (size_t)form_count, sizeof(_cgi_var_t), |
| 1337 | (int (*)(const void *, const void *))cgi_compare_variables); |
| 1338 | } |
| 1339 | |
| 1340 | |
| 1341 | /* |
no outgoing calls
no test coverage detected