12 lines
218 B
C
12 lines
218 B
C
// 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
|