muon/include/embedded.h
Stone Tickle deec7f7521 wip 2
2025-10-16 10:29:17 -04:00

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