mirror of
https://github.com/curl/curl.git
synced 2026-04-14 00:51:42 +08:00
Also to avoid `-Wunused-macros` warnings.
Follow-up to 8a3740bc8e #14059
Cherry-picked from #20593
Closes #20601
64 lines
1.6 KiB
Perl
Executable File
64 lines
1.6 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
|
|
#
|
|
###########################################################################
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
my $varname = "var";
|
|
if(@ARGV && $ARGV[0] eq "--var") {
|
|
shift;
|
|
$varname = shift @ARGV;
|
|
}
|
|
|
|
my $varname_upper = uc($varname);
|
|
|
|
print <<HEAD
|
|
/*
|
|
* NEVER EVER edit this manually, fix the mk-file-embed.pl script instead!
|
|
*/
|
|
/* !checksrc! disable COPYRIGHT all */
|
|
#include "tool_setup.h"
|
|
|
|
const unsigned char ${varname}[] = {
|
|
HEAD
|
|
;
|
|
|
|
while(<STDIN>) {
|
|
my $line = $_;
|
|
foreach my $n (split //, $line) {
|
|
my $ord = ord($n);
|
|
printf("%s,", $ord);
|
|
if($ord == 10) {
|
|
printf("\n");
|
|
}
|
|
}
|
|
}
|
|
|
|
print <<ENDLINE
|
|
0
|
|
};
|
|
ENDLINE
|
|
;
|