Add queue implementation

This commit is contained in:
2026-01-11 23:46:23 +00:00
parent 9af9cedd51
commit a9f5b9c3c6
9 changed files with 245 additions and 1 deletions

11
tests/queue/test_queue.h Normal file
View File

@@ -0,0 +1,11 @@
// vim:fileencoding=utf-8:foldmethod=marker
#ifndef TEST_QUEUE_H
#define TEST_QUEUE_H
#include "wapp.h"
TestFuncResult test_queue_push_back(void);
TestFuncResult test_queue_pop_front(void);
#endif // !TEST_QUEUE_H