mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-27 09:54:50 +00:00
15 lines
334 B
C
15 lines
334 B
C
/*
|
|
* SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
#ifndef MUON_CMD_SUBPROJECTS_H
|
|
#define MUON_CMD_SUBPROJECTS_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
struct workspace;
|
|
bool cmd_subprojects(struct workspace *wk, uint32_t argc, uint32_t argi, char *const argv[]);
|
|
#endif
|