# HG changeset patch # User roug # Date 1038047951 0 # Node ID b8ed2006640e1801fa11dfcb100e8c3baf733b53 # Parent 5894df624e1a294449677e120f21e61fd1cef9a2 Finished all the error messages in appendix A diff -r 5894df624e1a -r b8ed2006640e docs/ccguide/ccguide.docbook --- a/docs/ccguide/ccguide.docbook Fri Nov 15 21:49:51 2002 +0000 +++ b/docs/ccguide/ccguide.docbook Sat Nov 23 10:39:11 2002 +0000 @@ -86,7 +86,6 @@ C Compiler User's Guide - Updated for the new millenium Cleglen Publishing Limited diff -r 5894df624e1a -r b8ed2006640e docs/ccguide/chap1.chapter --- a/docs/ccguide/chap1.chapter Fri Nov 15 21:49:51 2002 +0000 +++ b/docs/ccguide/chap1.chapter Sat Nov 23 10:39:11 2002 +0000 @@ -106,6 +106,14 @@
Access To Command Line Parameters +The standard C arguments "argc" and "argv" are available to +"main" as described in K & R page 110. The start-up routine for C +programs ensures that the parameter string passed to it by the +parent process is converted into null-terminated strings as expected +by the program. In addition, it will run together as a single +argument any strings enclosed between single or double quotes ("'" or '"'). +If either is part of the string required, then the other +should be used as a delimiter.