edward

An extensible POSIX-compatible implementation of the ed(1) text editor

git clone https://git.8pit.net/edward.git

 1;;> This library provides various generic utility procedures.
 2
 3(define-library (edward.util)
 4  (import (scheme base)
 5          (scheme write)
 6          (scheme file)
 7          (scheme process-context)
 8
 9          (srfi 1)
10
11          (only (chicken port) terminal-port? terminal-size)
12          (only (chicken io) read-lines))
13
14  (export inc dec id alist-values fprintln println empty-string?
15          pad-string string->human-readable path-join user-home
16          count-bytes lines->port port->lines)
17
18  (include "util.scm"))