* Returns the number of jobs in the queue. * @param h Handle to hb_handle_t. * @return Number of jobs. */
| 1751 | * @return Number of jobs. |
| 1752 | */ |
| 1753 | int hb_count( hb_handle_t * h ) |
| 1754 | { |
| 1755 | return hb_list_count( h->jobs ); |
| 1756 | } |
| 1757 | |
| 1758 | /** |
| 1759 | * Returns handle to job at index i within the job list. |
no test coverage detected