mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
28 lines
568 B
C++
28 lines
568 B
C++
#pragma once
|
|
|
|
#include "common.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
namespace memory_util {
|
|
/**
|
|
* Create a shared pointer using malloc/free
|
|
*/
|
|
template <typename T, typename Deleter = decltype(free)>
|
|
inline auto make_malloc_ptr(size_t size = sizeof(T), Deleter deleter = free) {
|
|
return shared_ptr<T>(static_cast<T*>(malloc(size)), deleter);
|
|
}
|
|
|
|
/**
|
|
* Get the number of elements in T
|
|
*/
|
|
template <typename T>
|
|
inline auto countof(T& p) {
|
|
return sizeof(p) / sizeof(p[0]);
|
|
}
|
|
|
|
template <typename T>
|
|
using malloc_ptr_t = shared_ptr<T>;
|
|
}
|
|
|
|
POLYBAR_NS_END
|