Match bool c style

This commit is contained in:
Krzosa Karol
2023-04-16 15:30:08 +02:00
parent d4a7fc32c8
commit 4f658c0c09
12 changed files with 96 additions and 96 deletions

View File

@@ -22,7 +22,7 @@ Reserve :: (size: SizeU): Memory
lpAddress = 0)->*U8
return result
Commit :: (m: *Memory, size: SizeU): Bool
Commit :: (m: *Memory, size: SizeU): bool
commit_size := AlignUp(size, PAGE_SIZE)
total_commit := m.commit + commit_size
clamped_commit := ClampTopSizeU(total_commit, m.reserve)