(2 months ago)commit c268699: initial release of brickware marrow
#include <unistd.h>
#include <string.h>
#include "./slice.h"
struct slice
cstrtoslice(const char *s) {
struct slice result;
result.ptr = s;
result.size = strlen(s);
return (result);
}