// Versão 2.0 -- Junho de 2025
// Implementação do TAD fila genérica
+
+#include "queue.h"
+
+struct node_t
+{
+ void *item;
+ struct node_t *next;
+};
+
+struct queue_t
+{
+ struct node_t *head;
+ struct node_t *tail;
+ struct node_t *iterator;
+ int size;
+};