mirror of
https://github.com/ruby/ruby.git
synced 2025-08-23 13:04:13 +02:00
* ext/pathname/pathname.c (path_lstat): Pathname#lstat translated
from pathname.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28971 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2b1f8574c7
commit
98f53d5db2
3 changed files with 15 additions and 3 deletions
|
@ -384,6 +384,15 @@ path_stat(VALUE self)
|
|||
return rb_funcall(rb_cFile, rb_intern("stat"), 1, get_strpath(self));
|
||||
}
|
||||
|
||||
/*
|
||||
* See <tt>File.lstat</tt>.
|
||||
*/
|
||||
static VALUE
|
||||
path_lstat(VALUE self)
|
||||
{
|
||||
return rb_funcall(rb_cFile, rb_intern("lstat"), 1, get_strpath(self));
|
||||
}
|
||||
|
||||
/*
|
||||
* == Pathname
|
||||
*
|
||||
|
@ -599,4 +608,5 @@ Init_pathname()
|
|||
rb_define_method(rb_cPathname, "readlink", path_readlink, 0);
|
||||
rb_define_method(rb_cPathname, "rename", path_rename, 1);
|
||||
rb_define_method(rb_cPathname, "stat", path_stat, 0);
|
||||
rb_define_method(rb_cPathname, "lstat", path_lstat, 0);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue