summaryrefslogtreecommitdiff
path: root/three/expand.c
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2023-07-04 17:03:53 -0500
committerMichael Hunteman <michael@huntm.net>2023-07-06 17:23:45 -0500
commitbfce8f0d0d828209ec0bec71371ee94a7ad62d3e (patch)
treebdf49ca788ca1ca030d5b1cccfd0c9dffeb3f69f /three/expand.c
Initial commit
Diffstat (limited to 'three/expand.c')
-rw-r--r--three/expand.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/three/expand.c b/three/expand.c
new file mode 100644
index 0000000..180cc98
--- /dev/null
+++ b/three/expand.c
@@ -0,0 +1,19 @@
+#include <stdio.h>
+
+int
+main()
+{
+ int c, p;
+ while ((c = getchar()) != EOF) {
+ if (c == '-') {
+ c = getchar();
+ for (++p; p < c + 1; ++p) {
+ putchar(p);
+ }
+ } else {
+ putchar(c);
+ }
+ p = c;
+ }
+ return 0;
+}