try and be a bit more standard
This commit is contained in:
parent
c73be4c21c
commit
db42c21754
1 changed files with 7 additions and 7 deletions
14
ds.h
14
ds.h
|
|
@ -1,14 +1,14 @@
|
||||||
#ifndef _DS_LOADED
|
#ifndef DS_H
|
||||||
#define _DS_LOADED
|
#define DS_H
|
||||||
|
|
||||||
typedef struct _sll {
|
typedef struct _ds_sll {
|
||||||
struct _sll *next;
|
struct _ds_sll *next;
|
||||||
void *data;
|
void *data;
|
||||||
} ds_sll_t;
|
} ds_sll_t;
|
||||||
|
|
||||||
typedef struct _dll {
|
typedef struct _ds_dll {
|
||||||
struct _dll *next;
|
struct _ds_dll *next;
|
||||||
struct _dll *prev;
|
struct _ds_dll *prev;
|
||||||
void *data;
|
void *data;
|
||||||
} ds_dll_t;
|
} ds_dll_t;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue