Files
bluelib/ds/array.h

16 lines
302 B
C
Raw Normal View History

2024-10-24 19:24:54 +01:00
#ifndef _BLUELIB_ARRAY_H_
#define _BLUELIB_ARRAY_H_
#include "../object.h"
struct b_array {
struct b_dsref ar_base;
/* number of items in array */
unsigned int ar_len;
/* maximum number of items that can currently be stored in array */
unsigned int ar_cap;
struct b_dsref **ar_data;
2024-10-24 19:24:54 +01:00
};
#endif