RE: inline_stack help

2006-02-17 Thread Mcmillan, Scott A
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

Re: inline_stack help

2006-02-16 Thread Sisyphus
- 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: >

inline_stack help

2006-02-16 Thread Mcmillan, Scott A
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 @{