myMPD
Internal API documentation
Loading...
Searching...
No Matches
cache_disk_lyrics.h
Go to the documentation of this file.
1/*
2 SPDX-License-Identifier: GPL-3.0-or-later
3 myMPD (c) 2018-2025 Juergen Mang <mail@jcgames.de>
4 https://github.com/jcorporation/mympd
5*/
6
11#ifndef MYMPD_CACHE_DISK_LYRICS_H
12#define MYMPD_CACHE_DISK_LYRICS_H
13
14#include "dist/sds/sds.h"
15
16#include <stdbool.h>
17
18sds cache_disk_lyrics_get_name(const char *cachedir, const char *uri);
19sds cache_disk_lyrics_write_file(const char *cachedir, const char *uri, const char *str);
20
21#endif
sds cache_disk_lyrics_get_name(const char *cachedir, const char *uri)
Definition cache_disk_lyrics.c:29
sds cache_disk_lyrics_write_file(const char *cachedir, const char *uri, const char *str)
Definition cache_disk_lyrics.c:44