Fix styling issues, rename scripts

This commit is contained in:
2025-03-11 09:49:43 +03:00
parent 8009498331
commit 69515af77f
15 changed files with 91 additions and 11 deletions

View File

@@ -110,6 +110,7 @@ int16_t BH_Read16BEs(const char *buffer)
return tmp.s;
}
uint32_t BH_Read32BEu(const char *buffer)
{
union I32 tmp;
@@ -120,6 +121,7 @@ uint32_t BH_Read32BEu(const char *buffer)
return tmp.u;
}
int32_t BH_Read32BEs(const char *buffer)
{
union I32 tmp;
@@ -130,6 +132,7 @@ int32_t BH_Read32BEs(const char *buffer)
return tmp.s;
}
uint64_t BH_Read64BEu(const char *buffer)
{
union I64 tmp;
@@ -144,6 +147,7 @@ uint64_t BH_Read64BEu(const char *buffer)
return tmp.u;
}
int64_t BH_Read64BEs(const char *buffer)
{
union I64 tmp;