- Timestamp:
- 05/26/05 23:54:07 (4 years ago)
- svk:copy_cache_prev:
- 5515
- Location:
- src/perl5
- Files:
-
- 4 modified
-
perl5.c (modified) (1 diff)
-
perl5.h (modified) (1 diff)
-
pugsembed.c (modified) (1 diff)
-
pugsembed.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/perl5/perl5.c
r3919 r3924 160 160 161 161 SV * 162 perl5_newSVnv ( double iv ) 163 { 164 return(newSVnv(iv)); 165 } 166 167 SV * 162 168 perl5_call(char *subname, int argc, SV** args, int cxt) 163 169 { -
src/perl5/perl5.h
r3919 r3924 10 10 SV * perl5_newSVpv ( char * pv ); 11 11 SV * perl5_newSViv ( int iv ); 12 SV * perl5_newSVnv ( double iv ); 12 13 SV * perl5_call(char *subname, int argc, SV** args, int cxt); 13 14 bool perl5_can(SV *inv, char *subname); -
src/perl5/pugsembed.c
r3921 r3924 20 20 21 21 Val *pugs_Eval ( char *code ) { return NULL; } 22 23 22 Val *pugs_Apply ( Val *sub, Val *inv, Val **args ) { return NULL; } 24 25 SV *pugs_ValToSv ( Val *val ) { return NULL; } -
src/perl5/pugsembed.h
r3921 r3924 16 16 extern Val *pugs_PvToVal ( char *pv ); 17 17 18 PUGS_EXTERN SV *pugs_ValToSv ( Val *val );19 20 18 Val *pugs_SvToVal ( SV *sv ); 21 19 SV *pugs_MkValRef ( Val *val ); 22 20 23 21 extern Val *pugs_MkSvRef ( SV *sv ); 22 extern SV *pugs_ValToSv ( Val *val ); 23
