queue_try_peek() function
Non-blocking peek at the next item to be removed from the queue If the queue is not empty this function will return immediately with true with the peeked entry copied into the location specified by the data parameter, otherwise the function will return false.
Arguments
q
Pointer to a queue_t structure, used as a handle
data
Pointer to the location to receive the peeked value, or NULL if the data isn't required
Return value
true if there was a value to peek