myMPD
Internal API documentation
Loading...
Searching...
No Matches
sds_url.h
Go to the documentation of this file.
1/*
2 SPDX-License-Identifier: GPL-3.0-or-later
3 myMPD (c) 2018-2026 Juergen Mang <mail@jcgames.de>
4 https://github.com/jcorporation/mympd
5*/
6
10
11#ifndef MYMPD_SDS_URL_H
12#define MYMPD_SDS_URL_H
13
14#include "dist/sds/sds.h"
15
16#include <stdbool.h>
17
18sds sds_urldecode(sds s, const char *p, size_t len, bool is_form_url_encoded);
19sds sds_urlencode(sds s, const char *p, size_t len);
20
21#endif
sds sds_urlencode(sds s, const char *p, size_t len)
Definition sds_url.c:45
sds sds_urldecode(sds s, const char *p, size_t len, bool is_form_url_encoded)
Definition sds_url.c:65