mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-30 03:14:36 +00:00
13 lines
273 B
C
13 lines
273 B
C
/*
|
|
* SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
#ifndef MUON_MACHINE_FILE_H
|
|
#define MUON_MACHINE_FILE_H
|
|
|
|
#include "lang/workspace.h"
|
|
|
|
bool machine_file_parse(struct workspace *dest_wk, const char *path);
|
|
#endif
|