CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/Common/File/DiskFree.h
Views: 1401
1
#pragma once
2
3
#include <cstdint>
4
5
#include "Common/File/Path.h"
6
7
// If this fails, false is returned and space is negative.
8
bool free_disk_space(const Path &path, int64_t &space);
9
10