* Returns handle to job at index i within the job list. * @param h Handle to hb_handle_t. * @param i Index of job. * @returns Handle to hb_job_t of desired job. */
| 1762 | * @returns Handle to hb_job_t of desired job. |
| 1763 | */ |
| 1764 | hb_job_t * hb_job( hb_handle_t * h, int i ) |
| 1765 | { |
| 1766 | return hb_list_item( h->jobs, i ); |
| 1767 | } |
| 1768 | |
| 1769 | hb_job_t * hb_current_job( hb_handle_t * h ) |
| 1770 | { |
no test coverage detected