__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
;;; R7RS compatibility libraries
;;; Copyright (C) 2019 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 program. If not, see
;;; <http://www.gnu.org/licenses/>.
;;; Based on code from https://gitlab.com/akku/akku-scm, written
;;; 2018-2019 by Göran Weinholt <goran@weinholt.se>, as well as
;;; https://github.com/okuoku/yuni, written 2014-2018 by OKUMURA Yuki
;;; <mjt@cltn.org>. This code was originally released under the
;;; following terms:
;;;
;;; To the extent possible under law, the author(s) have dedicated
;;; all copyright and related and neighboring rights to this
;;; software to the public domain worldwide. This software is
;;; distributed without any warranty.
;;;
;;; See <http://creativecommons.org/publicdomain/zero/1.0/>, for a
;;; copy of the CC0 Public Domain Dedication.
(define-module (scheme process-context)
#:use-module (srfi srfi-98)
#:re-export (command-line
get-environment-variable
get-environment-variables)
#:export (emergency-exit
(r7:exit . exit)))
(define (translate-status status)
(case status
((#t) 0)
((#f) 1)
(else status)))
(define r7:exit
(case-lambda
(()
(exit))
((status)
(exit (translate-status status)))))
(define emergency-exit
(case-lambda
(()
(primitive-_exit))
((status)
(primitive-_exit (translate-status status)))))
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| base.scm | File | 17.46 KB | 0644 |
|
| case-lambda.scm | File | 840 B | 0644 |
|
| char.scm | File | 3.4 KB | 0644 |
|
| complex.scm | File | 933 B | 0644 |
|
| cxr.scm | File | 1.29 KB | 0644 |
|
| eval.scm | File | 1.39 KB | 0644 |
|
| file.scm | File | 1.1 KB | 0644 |
|
| inexact.scm | File | 2.14 KB | 0644 |
|
| lazy.scm | File | 976 B | 0644 |
|
| load.scm | File | 979 B | 0644 |
|
| process-context.scm | File | 1.97 KB | 0644 |
|
| r5rs.scm | File | 4.29 KB | 0644 |
|
| read.scm | File | 826 B | 0644 |
|
| repl.scm | File | 845 B | 0644 |
|
| time.scm | File | 1.11 KB | 0644 |
|
| write.scm | File | 979 B | 0644 |
|