aboutsummaryrefslogtreecommitdiffstats
path: root/src/input
diff options
context:
space:
mode:
authorShevek <[email protected]>2013-12-27 05:49:13 -0800
committerShevek <[email protected]>2013-12-27 05:49:13 -0800
commitbdc6c852f418c3e042aa41469d84544e5f60a526 (patch)
tree7866346f0fa48ad46a6a427d016dd4b83451dbbe /src/input
parent39264fd6d2a6646e49f83b5b2b3512c1663a1c9b (diff)
Version bump to 1.4.0-SNAPSHOT.
Rewrite build system to use gradle. Clean up source for the new generation.
Diffstat (limited to 'src/input')
-rw-r--r--src/input/test0.c61
-rw-r--r--src/input/test0.h7
-rw-r--r--src/input/test1.c2
-rw-r--r--src/input/test1.h7
-rw-r--r--src/input/trigraph.c1
5 files changed, 0 insertions, 78 deletions
diff --git a/src/input/test0.c b/src/input/test0.c
deleted file mode 100644
index 7e91637..0000000
--- a/src/input/test0.c
+++ /dev/null
@@ -1,61 +0,0 @@
-line = __LINE__
-file = __FILE__
-
-#define A a /* a defined */
-#define B b /* b defined */
-#define C c /* c defined */
-
-#define EXPAND(x) x
-EXPAND(a) -> a
-EXPAND(A) -> a
-
-#define _STRINGIFY(x) #x
-_STRINGIFY(A) -> "A"
-
-#define STRINGIFY(x) _STRINGIFY(x)
-STRINGIFY(b) -> "b"
-STRINGIFY(A) -> "a"
-
-#define _CONCAT(x, y) x ## y
-_CONCAT(A, B) -> AB
-
-#define A_CONCAT done_a_concat
-_CONCAT(A, _CONCAT(B, C)) -> done_a_concat(b, c)
-
-#define CONCAT(x, y) _CONCAT(x, y)
-CONCAT(A, CONCAT(B, C)) -> abc
-
-#define _CONCAT3(x, y, z) x ## y ## z
-_CONCAT3(a, b, c) -> abc
-_CONCAT3(A, B, C) -> ABC
-_CONCAT3(A, EXPAND(B), C) -> AEXPAND(b)C
-
-Line is __LINE__
-File is __FILE__
-
-#define two three
-one /* one */
-#define one two
-one /* three */
-#undef two
-#define two five
-one /* five */
-#undef two
-one /* two */
-#undef one
-#define one four
-one /* four */
-#undef one
-#define one one
-one /* one */
-
-/* warning line 57 column 0 */
-#warning arse
-
-#define foo(x) foo(x, b)
-foo(1) -> _foo(1, b) without the _
-foo(foo(2)) -> _foo(_foo(2, b), b) without the _
-// foo(y, z)
-
-#define var(x...) a x b
-var(e, f, g) -> a e, f, g b
diff --git a/src/input/test0.h b/src/input/test0.h
deleted file mode 100644
index b6697c6..0000000
--- a/src/input/test0.h
+++ /dev/null
@@ -1,7 +0,0 @@
-
-test0start_2
-
-#include "test1.h"
-
-test0end___6
-
diff --git a/src/input/test1.c b/src/input/test1.c
deleted file mode 100644
index 3e6fbda..0000000
--- a/src/input/test1.c
+++ /dev/null
@@ -1,2 +0,0 @@
-#include "./test0.h"
-#include <test1.h>
diff --git a/src/input/test1.h b/src/input/test1.h
deleted file mode 100644
index 0b690f7..0000000
--- a/src/input/test1.h
+++ /dev/null
@@ -1,7 +0,0 @@
-
-test1start_2
-
-test1mid___4
-
-test1end___6
-
diff --git a/src/input/trigraph.c b/src/input/trigraph.c
deleted file mode 100644
index 89615fe..0000000
--- a/src/input/trigraph.c
+++ /dev/null
@@ -1 +0,0 @@
-??/