From 374034d7e0a9df707f8000c1c50994ef468066b1 Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Wed, 25 Jan 2017 00:30:10 +0900 Subject: [PATCH] adding (srfi 115) wrapper around (chibi regexp) --- lib/srfi/115.sld | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 lib/srfi/115.sld diff --git a/lib/srfi/115.sld b/lib/srfi/115.sld new file mode 100644 index 00000000..2e597ef9 --- /dev/null +++ b/lib/srfi/115.sld @@ -0,0 +1,9 @@ +(define-library (srfi 115) + (export regexp regexp? valid-sre? rx regexp->sre char-set->sre + regexp-matches regexp-matches? regexp-search + regexp-replace regexp-replace-all + regexp-fold regexp-extract regexp-split regexp-partition + regexp-match? regexp-match-count + regexp-match-submatch + regexp-match-submatch-start regexp-match-submatch-end) + (import (chibi regexp)))