mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-31 03:45:53 +00:00
17 lines
510 B
C
17 lines
510 B
C
/*
|
|
* SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
#ifndef MUON_FUNCTIONS_KERNEL_SUBPROJECT_H
|
|
#define MUON_FUNCTIONS_KERNEL_SUBPROJECT_H
|
|
|
|
#include "coerce.h"
|
|
#include "functions/common.h"
|
|
#include "lang/workspace.h"
|
|
|
|
bool subproject(struct workspace *wk, obj name, enum requirement_type req, struct args_kw *default_options,
|
|
struct args_kw *versions, obj *res);
|
|
bool func_subproject(struct workspace *wk, obj _, uint32_t args_node, obj *res);
|
|
#endif
|