libk  str.h at [a14ceee056]

File kstr/str.h artifact f7e947c0d1 part of check-in a14ceee056


#ifndef KIstr
#define KIstr

#include <k/mem.h>

typedef struct kstr {
	sz size;
	kmptr ptr;
} kstr;

typedef struct ksraw {
	sz size;
	char* ptr;
} ksraw;
#endif