This commit is contained in:
Hiroaki Yamamoto 2024-08-25 11:32:23 +03:00 committed by GitHub
commit f0d50891e5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 713 additions and 65 deletions

View file

@ -0,0 +1,9 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef LABWC_YAML2XML_H
#define LABWC_YAML2XML_H
#include <common/buf.h>
#include <stdio.h>
struct buf yaml_to_xml(FILE *stream, const char *toplevel_name);
#endif /* LABWC_YAML2XML_H */