Root/eeshow/gui/fmt-pango.h

1/*
2 * gui/fmt-pango.h - Format strings for Pango markup
3 *
4 * Written 2016 by Werner Almesberger
5 * Copyright 2016 by Werner Almesberger
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 */
12
13
14#ifndef GUI_FMT_PANGO_H
15#define GUI_FMT_PANGO_H
16
17#include <stdarg.h>
18
19
20unsigned vsfmt_pango(char *buf, const char *fmt, va_list ap);
21char *vfmt_pango(const char *fmt, va_list ap);
22char *fmt_pango(const char *fmt, ...)
23    __attribute__((format(printf, 1, 2)));
24
25#endif /* !GUI_FMT_PANGO_H */
26

Archive Download this file

Branches:
master



interactive