#ifndef KIcore #define KIcore #include #include #include static void* const null = (void*)0; typedef struct kvar { ksraw name; ksraw val; char* platform; } kvar; typedef struct kenv { kiochan std; kiochan err; sz argc; char** argv; kvar* vars; } kenv; #endif