mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
* uri/standard: Move the `parse_url()` URI parser into ext/uri/ Making ext/standard depend on ext/uri/ is a bit iffy (given that it is called *standard*) and having the parser implementation in ext/uri/ makes it easier to find and keep in sync. * uri: Mark local pointers as `const` in uri_parser_php_parse_url.c * uri: Remove useless explicit cast from void in uri_parser_php_parse_url.c * uri: Properly prefix symbols in uri_parser_php_parse_url.[ch] * uri: Remove useless `throw_invalid_uri_exception()` helper in uri_parser_php_parse_url.c
26 lines
1.2 KiB
C
26 lines
1.2 KiB
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) The PHP Group |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
| available through the world-wide-web at the following url: |
|
|
| https://www.php.net/license/3_01.txt |
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
+----------------------------------------------------------------------+
|
|
| Authors: Máté Kocsis <kocsismate@php.net> |
|
|
| Tim Düsterhus <timwolla@php.net> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef PHP_URI_PARSER_PHP_PARSE_URL_H
|
|
#define PHP_URI_PARSER_PHP_PARSE_URL_H
|
|
|
|
#include "php_uri_common.h"
|
|
|
|
extern const uri_parser_t php_uri_parser_php_parse_url;
|
|
|
|
#endif
|