refactor: follow style guide

This commit is contained in:
dundargoc
2023-12-20 17:22:19 +01:00
committed by dundargoc
parent 84f6216130
commit ab2aad509d
7 changed files with 14 additions and 32 deletions

View File

@@ -23,9 +23,9 @@
#include "nvim/func_attr.h"
typedef struct _queue {
struct _queue *next;
struct _queue *prev;
typedef struct queue {
struct queue *next;
struct queue *prev;
} QUEUE;
// Public macros.