git subrepo pull --force deps/lightrec
[pcsx_rearmed.git] / deps / libretro-common / include / net / net_http_parse.h
CommitLineData
3719602c
PC
1/* Copyright (C) 2010-2020 The RetroArch team
2 *
3 * ---------------------------------------------------------------------------------------
4 * The following license statement only applies to this file (net_http.h).
5 * ---------------------------------------------------------------------------------------
6 *
7 * Permission is hereby granted, free of charge,
8 * to any person obtaining a copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation the rights to
10 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
11 * and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
16 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
19 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 */
22
23#ifndef _LIBRETRO_SDK_NET_HTTP_PARSE_H
24#define _LIBRETRO_SDK_NET_HTTP_PARSE_H
25
26#include <stdint.h>
27#include <boolean.h>
28#include <string.h>
29
30#include <retro_common_api.h>
31
32RETRO_BEGIN_DECLS
33
34/**
35 * string_parse_html_anchor:
36 * @line : Buffer where the <a> tag is stored
37 * @link : Buffer to store the link URL in
38 * @name : Buffer to store the link URL in
39 * @link_size : Size of the link buffer including the NUL-terminator
40 * @name_size : Size of the name buffer including the NUL-terminator
41 *
42 * Parses an HTML anchor link stored in @line in the form of: <a href="/path/to/url">Title</a>
43 * The buffer pointed to by @link is filled with the URL path the link points to,
44 * and @name is filled with the title portion of the link.
45 *
46 * @return 0 if URL was parsed completely, otherwise 1.
47 **/
48int string_parse_html_anchor(const char *line, char *link, char *name,
49 size_t link_size, size_t name_size);
50
51RETRO_END_DECLS
52
53#endif