Fixing indent

Spaces not tabs
This commit is contained in:
Michael Tryby
2019-04-10 11:25:01 -04:00
parent dba0d1cf52
commit fbecf1b915
4 changed files with 42 additions and 43 deletions

View File

@@ -4,7 +4,7 @@
Version: 2.2
Module: util/list.h
Description: Generic list
https://gist.github.com/pseudomuto/6334796#file-list-h
https://gist.github.com/pseudomuto/6334796#file-list-h
Accessed: April 9, 2019
Authors: David Muto, Modified by Michael E. Tryby
Copyright: see AUTHORS
@@ -29,17 +29,17 @@ typedef bool (*listIterator)(void *);
typedef struct _listNode {
void *data;
struct _listNode *next;
void *data;
struct _listNode *next;
} listNode;
typedef struct {
int logicalLength;
size_t elementSize;
listNode *head;
listNode *tail;
freeFunction freeFn;
int logicalLength;
size_t elementSize;
listNode *head;
listNode *tail;
freeFunction freeFn;
} list_t;