interpret/src/char_array_struct.h

5 lines
121 B
C
Raw Normal View History

2022-12-27 07:31:08 +00:00
/* This is a duplicate for publishing. */
#include <stddef.h>
struct char_array { char *data; size_t size, capacity; };