muon/include/cmd_install.h
2024-01-07 21:59:02 -05:00

17 lines
307 B
C

/*
* SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
* SPDX-License-Identifier: GPL-3.0-only
*/
#ifndef MUON_CMD_INSTALL_H
#define MUON_CMD_INSTALL_H
#include <stdbool.h>
struct install_options {
const char *destdir;
bool dry_run;
};
bool install_run(struct install_options *opts);
#endif