srfi-180/srfi-180.scm

21 lines
436 B
Scheme
Raw Permalink Normal View History

2024-09-13 21:59:25 +00:00
(module (srfi 180)
(&json-error
json-error?
json-error-reason
json-invalid-token
json-nesting-depth-limit
json-number-of-character-limit
json-generator
json-null?
json-fold
json-read
json-lines-read
json-sequence-read
json-accumulator
json-write)
2024-09-16 16:30:36 +00:00
(import (scheme)
(chicken base)
(chicken platform))
(register-feature! 'srfi-180)
2024-09-13 21:59:25 +00:00
(include-relative "srfi-180.impl.scm"))