mirror of
https://github.com/labwc/labwc.git
synced 2026-02-08 10:06:59 -05:00
12 lines
266 B
C
12 lines
266 B
C
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
||
|
|
#include <stdio.h>
|
||
|
|
#include "button/common.h"
|
||
|
|
#include "common/dir.h"
|
||
|
|
#include "config/rcxml.h"
|
||
|
|
|
||
|
|
void
|
||
|
|
button_filename(const char *name, char *buf, size_t len)
|
||
|
|
{
|
||
|
|
snprintf(buf, len, "%s/%s", theme_dir(rc.theme_name), name);
|
||
|
|
}
|