myMPD
Internal API documentation
Loading...
Searching...
No Matches
cache_disk_images.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_IMAGES_H
12#define MYMPD_CACHE_DISK_IMAGES_H
13
14#include "dist/sds/sds.h"
15
16#include <stdbool.h>
17
18sds cache_disk_images_get_basename(const char *cachedir, const char *type, const char *uri, int offset);
19sds cache_disk_images_write_file(sds cachedir, const char *type, const char *uri, const char *mime_type, sds binary, int offset);
20
21#endif
sds cache_disk_images_write_file(sds cachedir, const char *type, const char *uri, const char *mime_type, sds binary, int offset)
Definition cache_disk_images.c:49
sds cache_disk_images_get_basename(const char *cachedir, const char *type, const char *uri, int offset)
Definition cache_disk_images.c:31