Added the private headers to the check_names.py script for the mbedtls main repository

Signed-off-by: Anton Matkin <[email protected]>
This commit is contained in:
Anton Matkin
2025-08-29 09:29:01 +02:00
parent a85d4bfa3b
commit 6cb0bcb7d8
+4
View File
@@ -903,6 +903,7 @@ class MBEDTLSCodeParser(CodeParser):
all_macros = {"public": [], "internal": [], "private":[]}
all_macros["public"] = self.parse_macros([
"include/mbedtls/*.h",
"include/mbedtls/private/*.h",
])
all_macros["internal"] = self.parse_macros([
"library/*.h",
@@ -913,15 +914,18 @@ class MBEDTLSCodeParser(CodeParser):
])
enum_consts = self.parse_enum_consts([
"include/mbedtls/*.h",
"include/mbedtls/private/*.h",
"library/*.h",
"library/*.c",
])
identifiers, excluded_identifiers = self.parse_identifiers([
"include/mbedtls/*.h",
"include/mbedtls/private/*.h",
"library/*.h",
])
mbed_psa_words = self.parse_mbed_psa_words([
"include/mbedtls/*.h",
"include/mbedtls/private/*.h",
"library/*.h",
"library/*.c",
])