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

wirehaze git hosting

tasks implementation (ongoing)
[ppos.git] / queue / queue.c
deleted file mode 100644 (file)
index 4afa4a50164859b822cc86b060d4eada937977c0..0000000000000000000000000000000000000000
+++ /dev/null
@@ -1,21 +0,0 @@
-// PingPongOS - PingPong Operating System
-// Prof. Carlos A. Maziero, DINF UFPR
-// 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;
-};
new file mode 120000 (symlink)
index 0000000000000000000000000000000000000000..2dd39efa1362eab90fc8798646dfb2369a183981
--- /dev/null
@@ -0,0 +1 @@
+../ppos/lib/queue.c
\ No newline at end of file