feat: parsing dtb

This commit is contained in:
karina
2026-04-26 10:48:54 +04:00
parent f15a146608
commit 32931021d2
5 changed files with 25 additions and 14 deletions
+4
View File
@@ -176,4 +176,8 @@ Int32 StringFormat(ASCII* destination, UInt64 size, const ASCII* format, ...) {
Int32 returnValue = StringFormatVariadic(destination, size, format, args);
va_end(args);
return returnValue;
}
Boolean StringStartsWith(const ASCII* string, const ASCII* prefix) {
return StringCompareWithLimit(string, prefix, StringGetLength(prefix)) == 0;
}