muon/include/cmd_install.h
2025-10-26 21:52:26 -04:00

18 lines
358 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, uninstall;
};
struct workspace;
bool install_run(struct workspace *wk, struct install_options *opts);
#endif