|< 1 2 >| | 13 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
sub hashCopyByKey {
my $target = shift;
my $source = shift;
my @keys = @_;
foreach (@keys){
$target->{$_} = $source->{$_} if $source->{$_};
}
}
@{%Target}{qw(some keys)} = @{%Source}{qw(some keys)};
$target->{$_} = $source->{$_} if exists $source->{$_};
my ($target, $source, @keys) = @_;
char *strcpy( char *strDestination, const char *strSource );
char *strcpy( char *strDestination, const char *strSource );
|< 1 2 >| | 13 Einträge, 2 Seiten |