Home
last modified time | relevance | path

Searched refs:strip_dash (Results 1 – 1 of 1) sorted by relevance

/external/curl/scripts/
Dcompletion.pl72 $option .= " --short-option '" . strip_dash(trim($short)) . "'"
74 $option .= " --long-option '" . strip_dash(trim($long)) . "'"
76 $option .= " --description '" . strip_dash(trim($desc)) . "'"
107 sub strip_dash { my $s = shift; $s =~ s/^-+//g; return $s }; subroutine