????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.143.144.95 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/guile/2.0/ice-9/ |
Upload File : |
;;; installed-scm-file ;;;; Copyright (C) 1999, 2006 Free Software Foundation, Inc. ;;;; ;;;; This library is free software; you can redistribute it and/or ;;;; modify it under the terms of the GNU Lesser General Public ;;;; License as published by the Free Software Foundation; either ;;;; version 3 of the License, or (at your option) any later version. ;;;; ;;;; This library is distributed in the hope that it will be useful, ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;;;; Lesser General Public License for more details. ;;;; ;;;; You should have received a copy of the GNU Lesser General Public ;;;; License along with this library; if not, write to the Free Software ;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ;;;; (eval-when (compile) (set-current-module (resolve-module '(guile)))) (define (stat:dev f) (vector-ref f 0)) (define (stat:ino f) (vector-ref f 1)) (define (stat:mode f) (vector-ref f 2)) (define (stat:nlink f) (vector-ref f 3)) (define (stat:uid f) (vector-ref f 4)) (define (stat:gid f) (vector-ref f 5)) (define (stat:rdev f) (vector-ref f 6)) (define (stat:size f) (vector-ref f 7)) (define (stat:atime f) (vector-ref f 8)) (define (stat:mtime f) (vector-ref f 9)) (define (stat:ctime f) (vector-ref f 10)) (define (stat:blksize f) (vector-ref f 11)) (define (stat:blocks f) (vector-ref f 12)) (define (stat:atimensec f) (vector-ref f 15)) (define (stat:mtimensec f) (vector-ref f 16)) (define (stat:ctimensec f) (vector-ref f 17)) ;; derived from stat mode. (define (stat:type f) (vector-ref f 13)) (define (stat:perms f) (vector-ref f 14)) (define (passwd:name obj) (vector-ref obj 0)) (define (passwd:passwd obj) (vector-ref obj 1)) (define (passwd:uid obj) (vector-ref obj 2)) (define (passwd:gid obj) (vector-ref obj 3)) (define (passwd:gecos obj) (vector-ref obj 4)) (define (passwd:dir obj) (vector-ref obj 5)) (define (passwd:shell obj) (vector-ref obj 6)) (define (group:name obj) (vector-ref obj 0)) (define (group:passwd obj) (vector-ref obj 1)) (define (group:gid obj) (vector-ref obj 2)) (define (group:mem obj) (vector-ref obj 3)) (define (utsname:sysname obj) (vector-ref obj 0)) (define (utsname:nodename obj) (vector-ref obj 1)) (define (utsname:release obj) (vector-ref obj 2)) (define (utsname:version obj) (vector-ref obj 3)) (define (utsname:machine obj) (vector-ref obj 4)) (define (getpwent) (getpw)) (define (setpwent) (setpw #t)) (define (endpwent) (setpw)) (define (getpwnam name) (getpw name)) (define (getpwuid uid) (getpw uid)) (define (getgrent) (getgr)) (define (setgrent) (setgr #t)) (define (endgrent) (setgr)) (define (getgrnam name) (getgr name)) (define (getgrgid id) (getgr id))