Mercurial > hg > Members > kono > nitros9-code
changeset 609:b8ed2006640e
Finished all the error messages in appendix A
author | roug |
---|---|
date | Sat, 23 Nov 2002 10:39:11 +0000 |
parents | 5894df624e1a |
children | 497d17b4b264 |
files | docs/ccguide/ccguide.docbook docs/ccguide/chap1.chapter |
diffstat | 2 files changed, 8 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 @@ <book id="cc-guide" lang="en"> <bookinfo> <title>C Compiler User's Guide</title> - <subtitle>Updated for the new millenium</subtitle> <publisher> <publishername>Cleglen Publishing Limited</publishername>
--- 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 @@ <section> <title>Access To Command Line Parameters</title> <para> +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. </para> </section> </section>