From ede584d18ecd057b5715de5ed047671e20523a2e Mon Sep 17 00:00:00 2001 From: zlg Date: Sun, 3 Aug 2014 00:21:27 -0500 Subject: Ensure 1-02's solution compiles I'm preparing for build automation, so everything needs to build --- ch1/1-02_escape-sequences.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ch1/1-02_escape-sequences.c b/ch1/1-02_escape-sequences.c index 8d122e0..bf9e8ca 100644 --- a/ch1/1-02_escape-sequences.c +++ b/ch1/1-02_escape-sequences.c @@ -10,6 +10,9 @@ */ int main(void) { - printf("Hello world! \d\n"); + /* Uncomment the next line for an invalid escape character! */ + /*printf("Hello world! \d\n");*/ + /* Compare with a valid one: */ + printf("Hello world! \t\n"); return 0; } -- cgit v1.2.3-54-g00ecf get'> Manage your game collection and knock out that backlog!zlg
aboutsummaryrefslogtreecommitdiff
path: root/scripts/helpers.sh (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2018-03-13Make VGSTASH_DB_LOCATION point to a filezlg2-21/+20
2016-11-18Remove settings from helpers.shZe Libertine Gamer1-5/+0
2016-11-15Correct phrasing in README.Ze Libertine Gamer1-4/+4
2016-11-13DerpZe Libertine Gamer1-0/+1
2016-11-03Improve error handling in shell scriptsZe Libertine Gamer4-3/+23
2016-10-24Correct run_again, add recursionZe Libertine Gamer1-0/+4
2016-10-21Add quotes to correct behavior for arglistZe Libertine Gamer1-1/+1
2016-10-14updater.sh: add recursion, error handlingZe Libertine Gamer1-43/+101
2016-10-14Correct pipe-handling behaviorZe Libertine Gamer1-1/+9
2016-10-12Clarify a method to move between platformsZe Libertine Gamer1-2/+5