13 lines
251 B
C
13 lines
251 B
C
// vim:fileencoding=utf-8:foldmethod=marker
|
|
|
|
#ifndef TEST_QUEUE_H
|
|
#define TEST_QUEUE_H
|
|
|
|
#include "wapp.h"
|
|
|
|
TestFuncResult test_queue_push(void);
|
|
TestFuncResult test_queue_push_alloc(void);
|
|
TestFuncResult test_queue_pop(void);
|
|
|
|
#endif // !TEST_QUEUE_H
|