yphus [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 16, 2006 6:14 PM
To: Mcmillan, Scott A; [email protected]
Subject: Re: inline_stack help
- Original Message -
From: "Mcmillan, Scott A" <[EMAIL PROTECTED]>
To:
Sent: Friday, February 17, 2006 10:43 AM
Subject: inl
- Original Message -
From: "Mcmillan, Scott A" <[EMAIL PROTECTED]>
To:
Sent: Friday, February 17, 2006 10:43 AM
Subject: inline_stack help
> Hi,
>
> I'm trying to convert the following Perl member functions into their
> Inline C equivalents:
>
Hi,
I'm trying to convert the following Perl member functions into their
Inline C equivalents:
sub add_message {
my ($self, $message) = @ARG;
push @{$self->{MESSAGE}}, $message;
return;
}
sub messages {
my ($self) = @ARG;
if (defined $self->{MESSAGE}) {
return @{