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 2 3 4 |
#ifndef KIstr #define KIstr #endif |
> > > > > > > > > > > |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#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 |