libk  bufwrite.fn.c at [8d478e0b3c]

File mod/kstr/bufwrite.fn.c artifact 564ff21d85 part of check-in 8d478e0b3c


#include <k/type.h>
#include <k/str.h>
#include <k/io.h>

kcond
ksbufwrite(ksbuf* out, const char** array) {
	for (sz i=0; array[i] != null; ++ i) {
		ksraw str = { 0, array[i] };
		kcond c = ksbufput(out, str);
		if (!kokay(c)) return c;
	}

	return kscond_ok;
}