mirror of
https://github.com/labwc/labwc.git
synced 2026-04-11 08:21:13 -04:00
Tried with:
---
theme:
- name: Adwaita-light
- cornerRadius: 2
...
Needs lots of testing.
11 lines
239 B
C
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 */
|