Merge remote-tracking branch 'origin/main'

This commit is contained in:
Patrick Vogler 2024-02-01 15:36:11 +01:00
commit db5f6a4e5f
Signed by: Patrick Vogler
GPG key ID: 5536B08CE82E8509

View file

@ -282,6 +282,10 @@ public_header.write("\n" + ubox + tab + "||" + lspaces * " " + "___ _ _ ___ _
tab + "||" + lspaces * " " + "| |__| |__] |___ | |___ | |__| | \| |___ | | |__| | \| ___]" + rspaces * " " + "||\n" +
tab + "||" + (116 - len(tab)) * " " + "||\n" + lbox)
public_header.write("\n" + tab + "#ifdef __cplusplus\n" +
tab + "extern \"C\" {\n" +
tab + "#endif\n\n")
files = os.listdir("include/library/private")
printFlg = False
ltab = 0
@ -327,5 +331,10 @@ for file in files:
public_header.write(buff)
buff = line
f.close
public_header.write("\n" + tab + "#ifdef __cplusplus\n" +
tab + "}\n" +
tab + "#endif\n\n")
public_header.write("#endif")
public_header.close