This commit is contained in:
2025-12-18 16:41:37 +08:00
commit 1940ef7547
18 changed files with 1771 additions and 0 deletions

20
c_ptr.h Normal file
View File

@@ -0,0 +1,20 @@
/*
SPDX-FileCopyrightText: 2022 Xaver Hugl <xaver.hugl@gmail.com>
SPDX-License-Identifier: LGPL-2.1-or-later
*/
#pragma once
#include <memory>
struct CDeleter {
template<typename T>
void operator()(T *ptr)
{
if (ptr) {
free(ptr);
}
}
};
template<typename T>
using UniqueCPointer = std::unique_ptr<T, CDeleter>;