We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4491284 commit e680c4fCopy full SHA for e680c4f
1 file changed
queue.h
@@ -51,7 +51,7 @@ void queue_delete(queue_t **q);
51
* @param q Queue instance.
52
* @param elem Pointer to the element to insert.
53
*
54
- * @return true if the element was successfully added.
+ * @return true if the element was successfully added.
55
* false if `q` is NULL or the queue is full.
56
*/
57
bool queue_push(queue_t *q, void *elem);
@@ -65,8 +65,7 @@ bool queue_push(queue_t *q, void *elem);
65
66
* @param elem Output pointer to store the removed element.
67
68
- * @return true if an element was popped successfully.
+ * @return true if an element was popped successfully.
69
* false if `q` is NULL or the queue is empty.
70
71
bool queue_pop(queue_t *q, void **elem);
72
-
0 commit comments