nbos

nbos

https://git.tonybtw.com/nbos.git git://git.tonybtw.com/nbos.git
233 bytes raw
1
#ifndef NB_SLICE_H
2
#define NB_SLICE_H
3
4
#include <stddef.h>
5
6
#define ARRAY_LEN(a) (sizeof(a) / sizeof((a)[0]))
7
#define SLICE_FROM_ARRAY(a) { .data = (a), .len = ARRAY_LEN(a) }
8
#define SLICE_EMPTY { .data = nullptr, .len = 0 }
9
10
#endif