↩ revert:

This commit is contained in:
lzy
2024-05-27 02:33:10 +08:00
parent 2336f88407
commit a277dec1fe
136 changed files with 606 additions and 606 deletions

View File

@@ -5,12 +5,12 @@
typedef LLIST QUEUE;
QUEUE* queue_create(int);
QUEUE *queue_create(int);
int queue_en(QUEUE*, const void*);
int queue_en(QUEUE *, const void *);
int queue_de(QUEUE*, void*);
int queue_de(QUEUE *, void *);
void queue_destroy(QUEUE*);
void queue_destroy(QUEUE *);
#endif