Added reference to the origin of the code
This commit is contained in:
parent
0370fcb8bc
commit
d0df8e8cd2
|
@ -1,3 +1,10 @@
|
||||||
|
[This file and the accompanying source code were derived from
|
||||||
|
Oleg's code for Gambit available from
|
||||||
|
|
||||||
|
http://okmij.org/ftp/Scheme/index.html#binio
|
||||||
|
|
||||||
|
]
|
||||||
|
|
||||||
(make-bit-reader byte-reader) -> bit-reader
|
(make-bit-reader byte-reader) -> bit-reader
|
||||||
|
|
||||||
Given a BYTE-READER (a thunk), construct and return a function
|
Given a BYTE-READER (a thunk), construct and return a function
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
|
;;; This file and the accompanying README were derived from
|
||||||
|
;;; Oleg's code for Gambit available from
|
||||||
|
;;;
|
||||||
|
;;; http://okmij.org/ftp/Scheme/index.html#binio
|
||||||
|
;;;
|
||||||
|
|
||||||
|
|
||||||
; Binary parsing
|
; Binary parsing
|
||||||
|
|
||||||
;----------------------------------------
|
;----------------------------------------
|
||||||
|
@ -73,7 +80,7 @@
|
||||||
; "interpreter". The abbreviated notation may turn out to look like
|
; "interpreter". The abbreviated notation may turn out to look like
|
||||||
; Olin's regular expressions.
|
; Olin's regular expressions.
|
||||||
|
|
||||||
; $Id: binary-parse.scm,v 1.1 2003/04/14 06:38:47 mainzelM Exp $
|
; $Id: binary-parse.scm,v 1.2 2003/04/14 06:45:20 mainzelM Exp $
|
||||||
|
|
||||||
|
|
||||||
;----------------------------------------
|
;----------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue