(list? (buf-marks obj))
(vector? (buf-data obj))))
+(define (buf-marked? b)
+ (if (buf? b) '()))
+
+(define (buf-mark b)
+ (if (buf? b) '()))
+
+(define (buf-release b)
+ (if (buf? b) '()))
+
+(define (buf-sync b n)
+ (if (buf? b) '()))
+
+(define (buf-fill b n)
+ (if (buf? b) '()))
+
+(define (buf-lookahead b n)
+ (if (buf? b) '()))
+
+(define (buf-consume b n)
+ (if (buf? b) '()))
+
(declare (unit test_foo))
+(test-suite "Foo unit tests"
+ (test "Foo does cool stuff"
+ (check-equal 42 (foo 1 2)) ))
+
(print "Hello, world!")