mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 13:49:17 +02:00
11 lines
341 B
Scheme
11 lines
341 B
Scheme
|
|
(define-library (chibi regexp pcre)
|
|
(export pcre->sre pcre->regexp)
|
|
(import (scheme base) (scheme char) (scheme cxr)
|
|
(srfi 1)
|
|
(chibi string) (chibi regexp))
|
|
(cond-expand
|
|
((library (srfi 151)) (import (srfi 151)))
|
|
((library (srfi 33)) (import (srfi 33)))
|
|
(else (import (srfi 60))))
|
|
(include "pcre.scm"))
|