-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[functional tests] Remove dependency on the ThunderChez library.
I've just moved the relevant code into the functional-tests dir.
- Loading branch information
Showing
61 changed files
with
16,836 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
fmt | ||
--- | ||
|
||
Combinator Formatting Library | ||
|
||
http://synthcode.com/scheme/fmt/ | ||
|
||
|
||
This directory contains a portable combinator-based formatting library | ||
for Scheme. It has been tested on Chicken, Gauche, MzScheme 3.x and | ||
Scheme48. | ||
|
||
Documentation is in the file fmt.html. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.8.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
;;;; fmt-c.scm -- fmt module for emitting/pretty-printing C code | ||
;; | ||
;; Copyright (c) 2007 Alex Shinn. All rights reserved. | ||
;; BSD-style license: http://synthcode.com/license.txt | ||
|
||
#!r6rs | ||
(library | ||
(fmt c) | ||
(export | ||
fmt-in-macro? fmt-expression? fmt-return? fmt-default-type | ||
fmt-newline-before-brace? fmt-braceless-bodies? | ||
fmt-indent-space fmt-switch-indent-space fmt-op fmt-gen | ||
c-in-expr c-in-stmt c-in-test | ||
c-paren c-maybe-paren c-type c-literal? c-literal char->c-char | ||
c-struct c-union c-class c-enum c-typedef c-cast | ||
c-expr c-expr/sexp c-apply c-op c-indent c-current-indent-string | ||
c-wrap-stmt c-open-brace c-close-brace | ||
c-block c-braced-block c-begin | ||
c-fun c-var c-prototype c-param c-param-list | ||
c-while c-for c-if c-switch | ||
c-case c-case/fallthrough c-default | ||
c-break c-continue c-return c-goto c-label | ||
c-static c-const c-extern c-volatile c-auto c-restrict c-inline | ||
c++ c-- c+ c- c* c/ c% c& c^ c~ c! c&& c<< c>> c== c!= ; |c\|| |c\|\|| | ||
c< c> c<= c>= c= c+= c-= c*= c/= c%= c&= c^= c<<= c>>= ;++c --c ; |c\|=| | ||
c++/post c--/post c. c-> | ||
c-bit-or c-or c-bit-or= | ||
cpp-if cpp-ifdef cpp-ifndef cpp-elif cpp-endif cpp-else cpp-undef | ||
cpp-include cpp-define cpp-wrap-header cpp-pragma cpp-line | ||
cpp-error cpp-warning cpp-stringify cpp-sym-cat | ||
c-comment c-block-comment c-attribute | ||
) | ||
|
||
(import (chezscheme) | ||
(fmt fmt) | ||
(srfi private include) | ||
(only (srfi s1 lists) every) | ||
(only (srfi s13 strings) substring/shared string-index string-index-right)) | ||
|
||
(include/resolve ("fmt") "fmt-c.scm") | ||
|
||
) |
Oops, something went wrong.