labwc/include/config/yaml2xml.h
Johan Malm 608246aac8 [wip] Support rc.yaml
Tried with:

    ---
    theme:
    - name: Adwaita-light
    - cornerRadius: 2
    ...

Needs lots of testing.
2024-08-13 20:58:56 +01:00

11 lines
239 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef LABWC_YAML2XML_H
#define LABWC_YAML2XML_H
#include <stdbool.h>
#include <stdio.h>
struct buf;
bool yaml_to_xml(struct buf *buffer, const char *filename);
#endif /* LABWC_YAML2XML_H */