util: Replace usage of boolean with c11 bool in src/util/format/* and src/util/tests/format/*

This is done by find and replace:
boolean -> bool
TRUE -> true
FALSE -> false

Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Reviewed-by: Jesse Natalie <jenatali@microsoft.com>
Reviewed-by: David Heidelberg <david.heidelberg@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19649>
This commit is contained in:
Yonggang Luo
2022-11-07 13:34:30 +08:00
committed by Marge Bot
parent d13d93b089
commit 5d794e8e3d
7 changed files with 264 additions and 264 deletions
+2 -2
View File
@@ -61,9 +61,9 @@ type_map = {
def bool_map(value):
if value:
return "TRUE"
return "true"
else:
return "FALSE"
return "false"
swizzle_map = {