chore: remove trailing whitespace from all source files in src/ directory

This commit is contained in:
2025-12-05 00:12:39 +00:00
parent 915e097a52
commit 0a368ed1c3
11 changed files with 945 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef RAVA_GC_HEAP_H
#define RAVA_GC_HEAP_H
#include "gc.h"
void rava_gc_heap_init(void);
void rava_gc_heap_shutdown(void);
void* rava_gc_heap_alloc(size_t size, uint8_t type);
void rava_gc_heap_free(void *ptr, size_t size);
bool rava_gc_request_block(void);
void rava_gc_recycle_blocks(void);
RavaGCHeap_t* rava_gc_get_heap(void);
#endif