flatten 20260225

This commit is contained in:
Timothy Prepscius
2026-02-25 12:39:24 -05:00
commit fa54be052a
315 changed files with 49791 additions and 0 deletions

28
tjp/core/file/copy.cpp Normal file
View File

@@ -0,0 +1,28 @@
// TJP COPYRIGHT HEADER
#ifdef TJP_CORE_HEADER_ONLY
#pragma once
#endif
#include <tjp/core/header_only/compile.h>
#include "copy.hpp"
#include "read.hpp"
#include "write.hpp"
#include <cstdio>
namespace tjp::core::file {
TJP_CORE_HEADER_ONLY_INLINE
bool copy(const String &from, const String &to)
{
if (auto contents = read(from))
if (write(to, *contents))
return true;
return false;
}
} // namespace