X-Git-Url: https://git.wirehaze.ovh/ppos.git/blobdiff_plain/cbd9f5a4f12510a0cb1c36ad38c6c8057853a888..HEAD:/queue/queue.c diff --git a/queue/queue.c b/queue/queue.c deleted file mode 100644 index 4afa4a5..0000000 --- a/queue/queue.c +++ /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; -}; diff --git a/queue/queue.c b/queue/queue.c new file mode 120000 index 0000000..2dd39ef --- /dev/null +++ b/queue/queue.c @@ -0,0 +1 @@ +../ppos/lib/queue.c \ No newline at end of file