mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-27 18:04:58 +00:00
23 lines
460 B
C
23 lines
460 B
C
/*
|
|
* SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
#ifndef MUON_EMBEDDED_H
|
|
#define MUON_EMBEDDED_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#include "lang/source.h"
|
|
|
|
struct embedded_file {
|
|
const char *name;
|
|
struct source src;
|
|
};
|
|
struct workspace;
|
|
|
|
bool embedded_get(struct workspace *wk, const char *name, struct source *src);
|
|
const struct embedded_file *embedded_file_list(uint32_t *len);
|
|
#endif
|