#ifndef __SLICE_H /* * Slice management */ struct slice { const char *ptr; size_t size; }; struct slice cstrtoslice(const char *s); #endif