Closed ghost closed 3 years ago
AFAIK it was renamed to StrGet
, a lot of the function and variable names have been changed for consistency.
https://zeal-operating-system.github.io/ZealOS/Kernel/SerialDev/Message.CC.html#l238
Most function names were altered to use proper naming scheme, with nouns in front and verbs at the end. This makes it easier to find a function you don't know the name of in AutoComplete by typing the first half of it. GetStr was inconsistent with StrCompare, StrCopy, StrLen, StrPrint, etc., so the function name was fixed for consistency.
Is there a .DD page for all the functions that were changed?
Somewhat, there are two places renames are logged. The first is the ChangeLog, which is kept up to date. https://zeal-operating-system.github.io/ZealOS/Doc/ChangeLog.DD.html
The second place to look is the HolyC to CosmiC conversion script, in the System/Utils folder. https://zeal-operating-system.github.io/ZealOS/System/Utils/ConversionScript.CC.html
Neither of these are guaranteed to be a complete list, but it should help figure out most if not all.
I see that GetStr() is gone, and I had to transcribe it from TempleOS. Could you tell me why you removed it?