seqqueue.h 文件
#ifndef _SEQ_QUEUE_H_
#define _SEQ_QUEUE_H_
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef void Queue;
#ifndef bool
#define bool int
#define true 1
#define false 0
#endif
Queue* SeqQueue_Create(int capacity);
bool SeqQueue_Destory(Queue* queue);
bool SeqQueue_Clear(