| 166 | } |
| 167 | |
| 168 | static void swap(int array[], int i, int j) { |
| 169 | int a = array[i]; |
| 170 | int b = array[j]; |
| 171 | array[j] = a; |
| 172 | array[i] = b; |
| 173 | } |
| 174 | |
| 175 | static void setup(void **objects) { |
| 176 | pn_connection_t *conn = pn_connection(); |
no outgoing calls
no test coverage detected