Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
guile /
3.0 /
srfi /
Delete
Unzip
Name
Size
Permission
Date
Action
srfi-171
[ DIR ]
drwxr-xr-x
2025-02-07 15:04
srfi-4
[ DIR ]
drwxr-xr-x
2025-02-07 15:04
srfi-42
[ DIR ]
drwxr-xr-x
2025-02-07 15:04
srfi-64
[ DIR ]
drwxr-xr-x
2025-02-07 15:04
srfi-67
[ DIR ]
drwxr-xr-x
2025-02-07 15:04
srfi-9
[ DIR ]
drwxr-xr-x
2025-02-07 15:04
srfi-1.scm
30.5
KB
-rw-r--r--
2022-02-10 20:40
srfi-10.scm
2.76
KB
-rw-r--r--
2022-02-10 20:40
srfi-11.scm
5.38
KB
-rw-r--r--
2022-02-10 20:40
srfi-111.scm
1.28
KB
-rw-r--r--
2022-02-10 20:40
srfi-13.scm
2.72
KB
-rw-r--r--
2022-02-10 20:40
srfi-14.scm
2.33
KB
-rw-r--r--
2022-02-10 20:40
srfi-16.scm
1.84
KB
-rw-r--r--
2022-02-10 20:40
srfi-17.scm
6.42
KB
-rw-r--r--
2022-02-10 20:40
srfi-171.scm
13.16
KB
-rw-r--r--
2022-02-10 20:40
srfi-18.scm
12.12
KB
-rw-r--r--
2022-02-10 20:40
srfi-19.scm
54.91
KB
-rw-r--r--
2022-02-10 20:40
srfi-2.scm
1.08
KB
-rw-r--r--
2022-02-10 20:40
srfi-26.scm
2.58
KB
-rw-r--r--
2022-02-10 20:40
srfi-27.scm
2.98
KB
-rw-r--r--
2022-02-10 20:40
srfi-28.scm
1.17
KB
-rw-r--r--
2022-02-10 20:40
srfi-31.scm
1.36
KB
-rw-r--r--
2022-02-10 20:40
srfi-34.scm
1.41
KB
-rw-r--r--
2022-02-10 20:40
srfi-35.scm
5.85
KB
-rw-r--r--
2022-02-10 20:40
srfi-37.scm
8.39
KB
-rw-r--r--
2022-02-10 20:40
srfi-38.scm
8.19
KB
-rw-r--r--
2022-02-10 20:40
srfi-39.scm
2.11
KB
-rw-r--r--
2022-02-10 20:40
srfi-4.scm
5.08
KB
-rw-r--r--
2022-02-10 20:40
srfi-41.scm
19.91
KB
-rw-r--r--
2022-02-10 20:40
srfi-42.scm
1.75
KB
-rw-r--r--
2022-02-10 20:40
srfi-43.scm
37.48
KB
-rw-r--r--
2022-02-10 20:40
srfi-45.scm
3.5
KB
-rw-r--r--
2022-02-10 20:40
srfi-6.scm
1.07
KB
-rw-r--r--
2022-02-10 20:40
srfi-60.scm
2.13
KB
-rw-r--r--
2022-02-10 20:40
srfi-64.scm
2.56
KB
-rw-r--r--
2022-02-10 20:40
srfi-67.scm
2.31
KB
-rw-r--r--
2022-02-10 20:40
srfi-69.scm
12.7
KB
-rw-r--r--
2022-02-10 20:40
srfi-71.scm
10.08
KB
-rw-r--r--
2022-02-10 20:40
srfi-8.scm
1.08
KB
-rw-r--r--
2022-02-10 20:40
srfi-88.scm
1.71
KB
-rw-r--r--
2022-02-10 20:40
srfi-9.scm
13.05
KB
-rw-r--r--
2022-02-10 20:40
srfi-98.scm
1.57
KB
-rw-r--r--
2022-02-10 20:40
Save
Rename
;;; srfi-98.scm --- An interface to access environment variables ;; Copyright (C) 2009 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 ;;; Author: Julian Graham <julian.graham@aya.yale.edu> ;;; Date: 2009-05-26 ;;; Commentary: ;; This is an implementation of SRFI-98 (An interface to access environment ;; variables). ;; ;; This module is fully documented in the Guile Reference Manual. ;;; Code: (define-module (srfi srfi-98) :use-module (srfi srfi-1) :export (get-environment-variable get-environment-variables)) (cond-expand-provide (current-module) '(srfi-98)) (define get-environment-variable getenv) (define (get-environment-variables) (define (string->alist-entry str) (let ((pvt (string-index str #\=)) (len (string-length str))) (and pvt (cons (substring str 0 pvt) (substring str (+ pvt 1) len))))) (filter-map string->alist-entry (environ)))