Prefix static macros

This commit is contained in:
2025-10-18 16:17:13 +01:00
parent 9f32891bbc
commit 0354c7b485
26 changed files with 169 additions and 169 deletions

View File

@@ -5,7 +5,7 @@
#include "../../../common/assert/assert.h"
#include <stddef.h>
internal b32 is_power_of_two(u64 num) { return (num & (num - 1)) == 0; }
wapp_intern b32 is_power_of_two(u64 num) { return (num & (num - 1)) == 0; }
void *wapp_mem_util_align_forward(void *ptr, u64 alignment) {
wapp_debug_assert(ptr != NULL, "`ptr` should not be NULL");