Skip to content
Snippets Groups Projects
Commit f1f50445 authored by Christian Engwer's avatar Christian Engwer
Browse files

[whitespace] fix indentation in heaps.h

parent cb1f48b4
No related branches found
No related tags found
1 merge request!94Feature/enforce dynamic memory allocmodel
......@@ -207,7 +207,7 @@ INT InitHeaps (void);
HEAP *NewHeap (enum HeapType type, MEM size, void *buffer);
void DisposeHeap (HEAP *theHeap);
void *GetMem (HEAP *theHeap, MEM n, enum HeapAllocMode mode);
void *GetMemUsingKey (HEAP *theHeap, MEM n, enum HeapAllocMode mode, INT key);
void *GetMemUsingKey (HEAP *theHeap, MEM n, enum HeapAllocMode mode, INT key);
void DisposeMem (HEAP *theHeap, void *buffer);
void *GetFreelistMemory (HEAP *theHeap, INT size);
......@@ -218,10 +218,10 @@ INT Release (HEAP *theHeap, INT mode, INT key);
MEM HeapSize (const HEAP *theHeap);
MEM HeapUsed (const HEAP *theHeap);
MEM HeapFree (const HEAP *theHeap);
MEM HeapFree (const HEAP *theHeap);
MEM HeapFreelistUsed (const HEAP *theHeap);
MEM HeapTotalFree (const HEAP *theHeap);
void HeapStat (const HEAP *theHeap);
MEM HeapTotalFree (const HEAP *theHeap);
void HeapStat (const HEAP *theHeap);
/* @} */
/** @name Functions for the virtual heap management */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment