🌈 style:

This commit is contained in:
lzy
2024-05-26 15:39:14 +08:00
parent 6f28a3384a
commit a57bbdb4c1
156 changed files with 765 additions and 770 deletions

View File

@@ -5,12 +5,12 @@
typedef LLIST STACK;
STACK *stack_create(int);
STACK* stack_create(int);
int stack_push(STACK *, const void *data);
int stack_push(STACK*, const void* data);
int stack_pop(STACK *, void *data);
int stack_pop(STACK*, void* data);
void stack_destroy(STACK *);
void stack_destroy(STACK*);
#endif