]> wirehaze git hosting - ppos.git/blob - queue/queue.c

wirehaze git hosting

4afa4a50164859b822cc86b060d4eada937977c0
[ppos.git] / queue / queue.c
1 // PingPongOS - PingPong Operating System
2 // Prof. Carlos A. Maziero, DINF UFPR
3 // Versão 2.0 -- Junho de 2025
4
5 // Implementação do TAD fila genérica
6
7 #include "queue.h"
8
9 struct node_t
10 {
11 void *item;
12 struct node_t *next;
13 };
14
15 struct queue_t
16 {
17 struct node_t *head;
18 struct node_t *tail;
19 struct node_t *iterator;
20 int size;
21 };