summaryrefslogtreecommitdiff
path: root/cook/parse.sld
blob: 29742b03237baaf2f53cbd92a9df1f5f7d9284df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
(define-library (cook parse)
  (import (srfi 1)
          (srfi 9)
          (srfi 69)
          (chibi)
          (chibi char-set ascii)
          (chibi char-set)
          (chibi parse)
          (chibi regexp)
          (chibi parse common))
  (export amount?
          amount-quantity
          amount-unit
          ingredient?
          ingredient-name
          ingredient-amount
          timer?
          timer-name
          timer-amount
          cookware?
          cookware-name
          cookware-amount
          step?
          step-elements
          parse-cook)
  (include "parse.scm"))