Differences From Artifact [21d6720beb]:
- File kstr/str.h — part of check-in [f5b7fa5762] at 2019-06-27 05:52:40 on branch trunk — updates (user: lexi, size: 36) [annotate] [blame] [check-ins using]
To Artifact [f7e947c0d1]:
- File kstr/str.h — part of check-in [a14ceee056] at 2019-06-27 21:39:17 on branch trunk — development milestone (user: lexi, size: 163) [annotate] [blame] [check-ins using]
1 1 #ifndef KIstr 2 2 #define KIstr 3 3 4 +#include <k/mem.h> 5 + 6 +typedef struct kstr { 7 + sz size; 8 + kmptr ptr; 9 +} kstr; 10 + 11 +typedef struct ksraw { 12 + sz size; 13 + char* ptr; 14 +} ksraw; 4 15 #endif