From 1e7b49e25990b6141ffa25da2cd4b6124d435f3d Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Fri, 10 Jul 2015 14:12:44 -0500 Subject: Move comment about TOYBOX_DEBUG to start of file so it's more obvious. --- lib/args.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/args.c b/lib/args.c index 592d33c8..d5fbb17d 100644 --- a/lib/args.c +++ b/lib/args.c @@ -3,6 +3,12 @@ * Copyright 2006 Rob Landley */ +// NOTE: If option parsing segfaults, switch on TOYBOX_DEBUG in menuconfig. + +// Enabling TOYBOX_DEBUG in .config adds syntax checks to option string parsing +// which aren't needed in the final code (your option string is hardwired and +// should be correct when you ship), but are useful for development. + #include "toys.h" // Design goals: @@ -39,10 +45,6 @@ * this[1]="fruit" (argument to -b) */ -// Enabling TOYBOX_DEBUG in .config adds syntax checks to option string parsing -// which aren't needed in the final code (your option string is hardwired and -// should be correct when you ship), but are useful for development. - // What you can put in a get_opt string: // Any otherwise unused character (all letters, unprefixed numbers) specify // an option that sets a flag. The bit value is the same as the binary digit -- cgit v1.2.3