Skip to content
Snippets Groups Projects
Commit 37767bc9 authored by yassin.elhakoun's avatar yassin.elhakoun
Browse files

Update cours_12.md (commentaires inversés)

parent 092079ff
No related branches found
No related tags found
1 merge request!58Update cours_12.md (commentaires inversés)
......@@ -62,8 +62,8 @@ typedef struct _queue { // File d'attente:
```C
void queue_init(queue *fa); // head = tail = NULL
bool queue_is_empty(queue fa); // fa.head == fa.tail == NULL
int queue_tail(queue fa); // return fa.head->data
int queue_head(queue fa); // return fa.tail->data
int queue_tail(queue fa); // return fa.tail->data
int queue_head(queue fa); // return fa.head->data
```
## Manipulations et destruction
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment