8 lines
224 B
C
8 lines
224 B
C
|
#pragma once
|
||
|
#include <stdint.h>
|
||
|
|
||
|
namespace Utilities
|
||
|
{
|
||
|
uint64_t get_blocks_from_size(uint64_t blocksize,
|
||
|
uint64_t size); // Returns how many blocks of size blocksize does size occupy.
|
||
|
}
|