Artifact cb5067b74b91dd510636ad972e02e8da5c819d9214e87d391955dfad8b449a1e:
- File kcore/core.h — part of check-in [a14ceee056] at 2019-06-27 21:39:17 on branch trunk — development milestone (user: lexi, size: 300) [annotate] [blame] [check-ins using]
#ifndef KIcore #define KIcore #include <k/type.h> #include <k/io.h> #include <k/str.h> 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