(2 months ago)commit c268699: initial release of brickware marrow
Back
raw
#ifndef __SLICE_H /* * Slice management */ struct slice { const char *ptr; size_t size; }; struct slice cstrtoslice(const char *s); #endif