Skip to content

Commit 339193f

Browse files
Merge pull request #3 from amirouche/master
Draft #2
2 parents f46ad4d + 28ce8e0 commit 339193f

13 files changed

+894
-785
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ <h1>SRFI 180: JSON</h1>
7474
<input name="list"
7575
type="hidden"
7676
value="[email protected]"></form></a></li></ul>
77-
<h2>Abstract</h2><p>This library describes a JavaScript Object Notation (JSON) parser and printer. It supports streaming parses of JSON that may be bigger than memory.</p></body></html>
77+
<h2>Abstract</h2><p>This library describes a JavaScript Object Notation (JSON) parser and printer. It supports JSON that may be bigger than memory.</p></body></html>

srfi-180.html

Lines changed: 212 additions & 160 deletions
Large diffs are not rendered by default.

srfi/180.sld

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
(define-library (srfi 180)
2+
3+
(export json-null?
4+
json-error?
5+
json-error-reason
6+
json-fold
7+
json-generator-read
8+
json-read
9+
json-write)
10+
11+
(import (scheme base)
12+
(scheme inexact)
13+
(scheme case-lambda)
14+
(scheme char)
15+
(scheme text)
16+
(scheme write)
17+
(check)
18+
(srfi 145)
19+
(srfi 180 helpers))
20+
21+
(cond-expand ((library (srfi 60))
22+
(import (only (srfi 60) arithmetic-shift bitwise-ior)))
23+
((library (srfi 151))
24+
(import (only (srfi 151) arithmetic-shift bitwise-ior))))
25+
26+
(include "180/body.scm"))

0 commit comments

Comments
 (0)