Added files

This commit is contained in:
saundersp
2024-11-07 22:23:49 +01:00
commit e2fd902f09
17 changed files with 1071 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
#include <string>
#include <stdint.h>
/**
* @brief Convert a given numbers of bytes to a human readable format
*
* @param n Number of bytes
* @return Human readable format of the numbers of bytes
*/
std::string format_bytes(uint64_t n) noexcept;