mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-30 03:14:36 +00:00
15 lines
311 B
C
15 lines
311 B
C
/*
|
|
* SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
#ifndef MUON_LANG_FMT_H
|
|
#define MUON_LANG_FMT_H
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "lang/parser.h"
|
|
|
|
bool fmt(struct source *src, FILE *out, const char *cfg_path, bool check_only, bool editorconfig);
|
|
#endif
|