mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-12 15:23:12 +01:00
13 lines
158 B
C
13 lines
158 B
C
|
#ifndef __QUEUE_TEST__
|
||
|
#define __QUEUE_TEST__
|
||
|
|
||
|
void queue_test();
|
||
|
|
||
|
void queue_initialization_test();
|
||
|
|
||
|
void queue_push_test();
|
||
|
|
||
|
void queue_pop_test();
|
||
|
|
||
|
#endif
|