about summary refs log tree commit diff stats
path: root/102kernel-string.subx
Commit message (Collapse)AuthorAgeFilesLines
* 6393 - start running .mu apps in CIKartik Agaram2020-05-241-4/+6
|
* 6153 - switch 'main' to use Mu stringsKartik Agaram2020-03-151-0/+89
At the SubX level we have to put up with null-terminated kernel strings for commandline args. But so far we haven't done much with them. Rather than try to support them we'll just convert them transparently to standard length-prefixed strings. In the process I realized that it's not quite right to treat the combination of argc and argv as an array of kernel strings. Argc counts the number of elements, whereas the length of an array is usually denominated in bytes.