2024-02-15 00:17:20 +01:00
|
|
|
#include "sandbox.h"
|
|
|
|
|
|
|
|
#include "utils.h"
|
|
|
|
|
|
|
|
#include "backing.h"
|
|
|
|
#include "entry.h"
|
|
|
|
#include "disk.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <libgen.h>
|
|
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
2024-02-15 00:40:47 +01:00
|
|
|
log_msg(LOG_INFO, "Available space : %lld", get_available_space());
|
2024-02-15 00:17:20 +01:00
|
|
|
}
|