🌈 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

@@ -3,13 +3,13 @@
#include "queue.h"
int main()
int main( )
{
queue *sq;
queue* sq;
datatype arr[] = {2, 34, 89, 12};
int i;
sq = qu_create();
sq = qu_create( );
if (NULL == sq)
exit(1);