Skip to content

Commit

Permalink
feat: add base linked_list
Browse files Browse the repository at this point in the history
  • Loading branch information
Gscienty committed Jul 2, 2019
1 parent 718bef4 commit 43c54e5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions linked_list.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#ifndef _LIBGRAPHQL_LINKED_LIST_H
#define _LIBGRAPHQL_LINKED_LIST_H

typedef struct graphql_linked_list_s graphql_linked_list_t;
struct graphql_linked_list_s {
graphql_linked_list_t *next;
graphql_linked_list_t *prev;
};

#endif

0 comments on commit 43c54e5

Please sign in to comment.