mirror of
https://github.com/curl/curl.git
synced 2026-07-10 16:27:17 +03:00
- cmp-pkg-config.sh: replace `-r -f` with `-rf` to match rest of repo. - configure.ac: add double quotes for robustness (not a bug). - curl-openssl.m4: merge nested `if`s. - CurlTests.c: drop `!= 0`, also to sync with m4. - CurlTests.c: replace `example.com` with `localhost` in `gethostbyname()` feature test code. (compile-only, not a bug) - GHA/http3-linux: drop literal `true` from bool expression. - lib650: drop redundant `&`. - move variable/call to left-hand side of equality checks, where missing. - perl: detach `<`/`>` from filename in `open()`, where missing. - schannel: apply two nit fixes lost in rebase. - scripts/verify-release: drop redundant double quotes. - scripts/verify-release: exit with error code on error. - synctime: replace magic numbers with `sizeof()`. - telnet: add missing parentheses to macro value. - tests/Makefile.am: use single quotes. - tool_operate: drop redundant `break` after `return` in VMS code. - unit2413: drop unused NULL pointer + free call. - unit2413: fix duplicate test case name. - urlapi: drop redundant parentheses. - urlapi: drop `CURL_UNCONST()` that became redundant. Closes #22186
63 lines
1.9 KiB
Perl
Executable file
63 lines
1.9 KiB
Perl
Executable file
#!/usr/bin/env perl
|
|
#***************************************************************************
|
|
# _ _ ____ _
|
|
# Project ___| | | | _ \| |
|
|
# / __| | | | |_) | |
|
|
# | (__| |_| | _ <| |___
|
|
# \___|\___/|_| \_\_____|
|
|
#
|
|
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# This software is licensed as described in the file COPYING, which
|
|
# you should have received as part of this distribution. The terms
|
|
# are also available at https://curl.se/docs/copyright.html.
|
|
#
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
#
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
# KIND, either express or implied.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
#
|
|
###########################################################################
|
|
|
|
# pass files as argument(s)
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use File::Copy;
|
|
|
|
my $docroot = "https://curl.se/libcurl/c";
|
|
|
|
for my $f (@ARGV) {
|
|
open(NEW, ">", "$f.new");
|
|
open(F, "<", $f);
|
|
while(<F>) {
|
|
my $l = $_;
|
|
if($l =~ /\/* $docroot/) {
|
|
# ignore previously added refs
|
|
}
|
|
elsif($l =~ /^( *).*curl_easy_setopt\([^,]*, *([^ ,]*) *,/) {
|
|
my ($prefix, $anchor) = ($1, $2);
|
|
$anchor =~ s/_//g;
|
|
print NEW "$prefix/* $docroot/curl_easy_setopt.html#$anchor */\n";
|
|
print NEW $l;
|
|
}
|
|
elsif($l =~ /^( *).*(curl_([^\(]*))\(/) {
|
|
my ($prefix, $func) = ($1, $2);
|
|
print NEW "$prefix/* $docroot/$func.html */\n";
|
|
print NEW $l;
|
|
}
|
|
else {
|
|
print NEW $l;
|
|
}
|
|
}
|
|
close(F);
|
|
close(NEW);
|
|
|
|
move($f, "$f.org");
|
|
move("$f.new", $f);
|
|
}
|