libk  str.h at [ec9b2b74b3]

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


#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