mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-08 22:31:31 +01:00
19 lines
245 B
C
19 lines
245 B
C
#ifndef __QUEUE_TEST__
|
|
#define __QUEUE_TEST__
|
|
|
|
#include <assert.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "libcproject.h"
|
|
|
|
void queue_test();
|
|
|
|
void queue_initialization_test();
|
|
|
|
void queue_push_test();
|
|
|
|
void queue_pop_test();
|
|
|
|
#endif
|