libk  str.h at [51af496851]

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


#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