mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-30 19:34:50 +00:00
17 lines
737 B
C
17 lines
737 B
C
/*
|
|
* SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
#ifndef MUON_FUNCTIONS_KERNEL_INSTALL_H
|
|
#define MUON_FUNCTIONS_KERNEL_INSTALL_H
|
|
#include "functions/common.h"
|
|
|
|
bool func_install_subdir(struct workspace *wk, obj _, uint32_t args_node, obj *ret);
|
|
bool func_install_man(struct workspace *wk, obj _, uint32_t args_node, obj *ret);
|
|
bool func_install_symlink(struct workspace *wk, obj _, uint32_t args_node, obj *ret);
|
|
bool func_install_emptydir(struct workspace *wk, obj _, uint32_t args_node, obj *ret);
|
|
bool func_install_data(struct workspace *wk, obj _, uint32_t args_node, obj *res);
|
|
bool func_install_headers(struct workspace *wk, obj _, uint32_t args_node, obj *ret);
|
|
#endif
|