meta: rename legacy object module to 'ds'
This commit is contained in:
19
ds/list.h
Normal file
19
ds/list.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef _BLUELIB_LIST_H_
|
||||
#define _BLUELIB_LIST_H_
|
||||
|
||||
#include "object.h"
|
||||
|
||||
#include <blue/core/queue.h>
|
||||
|
||||
struct b_list {
|
||||
struct b_dsref l_base;
|
||||
struct b_queue l_queue;
|
||||
size_t l_len;
|
||||
};
|
||||
|
||||
struct b_list_entry {
|
||||
struct b_queue_entry e_entry;
|
||||
void *e_data;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user