473,394 Members | 1,751 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Spot the error...

A colleague is reading through some C articles and was asked if there
are any errors in the following code. Neither of us can spot any
issues, I have compiled it with VC8 and GCC at their strictest
settings and got nothing of note.

Here is the code:

#include <stdio.h>

void usage(char *ptCommand);

int main(int argc, char * argv[]) {
if (argc < 2)
usage(argv[0]);

return 0;
}

void usage(char *ptCommand) {
char usageInfo[1023];

_snprintf(usageInfo, 1023, "Usage: %s \n", ptCommand);

printf(usageInfo);
}

Thank you.

Mar 20 '07 #1
42 1772
NwsGrp1 wrote:
A colleague is reading through some C articles and was asked if there
are any errors in the following code. Neither of us can spot any
issues, I have compiled it with VC8 and GCC at their strictest
settings and got nothing of note.

Here is the code:

#include <stdio.h>

void usage(char *ptCommand);

int main(int argc, char * argv[]) {
if (argc < 2)
usage(argv[0]);

return 0;
}

void usage(char *ptCommand) {
char usageInfo[1023];

_snprintf(usageInfo, 1023, "Usage: %s \n", ptCommand);
There isn't a function called _snprintf in standard C.

--
Ian Collins.
Mar 20 '07 #2
NwsGrp1 wrote on 20/03/2007 11:44:
A colleague is reading through some C articles and was asked if there
are any errors in the following code. Neither of us can spot any
issues, I have compiled it with VC8 and GCC at their strictest
settings and got nothing of note.

Here is the code:

#include <stdio.h>

void usage(char *ptCommand);

int main(int argc, char * argv[]) {
if (argc < 2)
usage(argv[0]);

return 0;
}

void usage(char *ptCommand) {
char usageInfo[1023];

_snprintf(usageInfo, 1023, "Usage: %s \n", ptCommand);

printf(usageInfo);
}

Thank you.
Use
printf("%s", usageInfo)
in case ptCommand contains format specifiers.

Bavo
Mar 20 '07 #3
NwsGrp1 <nw*****@googlemail.comwrote:
_snprintf(usageInfo, 1023, "Usage: %s \n", ptCommand);
(I don't have _snprintf(), but do have snprintf(). I say... 4 people
are about to call you on this one. :)

As for "errors", check this out: I named the executable "foo%s" and it
crashed when I ran it. Why?

-Beej

Mar 20 '07 #4
On Mar 20, 11:10 am, Ian Collins <ian-n...@hotmail.comwrote:
NwsGrp1 wrote:
A colleague is reading through some C articles and was asked if there
are any errors in the following code. Neither of us can spot any
issues, I have compiled it with VC8 and GCC at their strictest
settings and got nothing of note.

[snip]
_snprintf(usageInfo, 1023, "Usage: %s \n", ptCommand);

There isn't a function called _snprintf in standard C.
Apologies I meant snprintf mentioned in section 7.19.6.5 in n1124.

Carl.

Mar 20 '07 #5
NwsGrp1 said:
A colleague is reading through some C articles and was asked if there
are any errors in the following code. Neither of us can spot any
issues, I have compiled it with VC8 and GCC at their strictest
settings and got nothing of note.

Here is the code:

#include <stdio.h>

void usage(char *ptCommand);

int main(int argc, char * argv[]) {
if (argc < 2)
usage(argv[0]);
I have read Ian's remark on _snprintf, which is correct. I have a couple
of other remarks to make in addition.

Firstly, the Standard allows argc to be 0, in which case argv[0] will be
NULL, in which case your usage function has problems.
>
return 0;
}

void usage(char *ptCommand) {
You might want to make this const char * rather than char *.
char usageInfo[1023];

_snprintf(usageInfo, 1023, "Usage: %s \n", ptCommand);

printf(usageInfo);
Why are you bothering with the string? If you want to restrict the total
length of the output to 1023, why not just write this...

printf("Usage: %.1013s \n", ptCommand);

Incidentally, if they obey this usage instruction, all they'll get is
the usage instruction again. :-)

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Mar 20 '07 #6
On Mar 20, 11:19 am, Beej Jorgensen <b...@beej.uswrote:
NwsGrp1 <nwsg...@googlemail.comwrote:
_snprintf(usageInfo, 1023, "Usage: %s \n", ptCommand);

[snip]
As for "errors", check this out: I named the executable "foo%s" and it
crashed when I ran it. Why?

-Beej
Damn... format string vulnerability. I looked for that in the snprintf
line but not the printf, I was fooled into thinking it was safe after
the snprintf and never thought of actually testing it with something
like "foo%n%n%n".

Thank you Beej, Bavo, all.

Carl.

Mar 20 '07 #7
On Tue, 20 Mar 2007 11:23:01 +0000, Richard Heathfield
<rj*@see.sig.invalidwrote:
>
Firstly, the Standard allows argc to be 0, in which case argv[0] will be
NULL, in which case your usage function has problems.
Can you imagine a (real) case where this actually might occur? (I'm just
curios).

K&R are less "pedantic" concerning this point than you are. They write in
K&R2, p. 115:

"By convention, argv[0] is the name by which the program
was invoked, so argc is at least 1."

If your claim is true, this claim of K&R is in contradiction to the
standard, right? (Or is this something where ANSI-C and C99 do differ?)
G. H.

--

E-mail: info<at>simple-line<Punkt>de
Mar 20 '07 #8
Gregor H. said:
On Tue, 20 Mar 2007 11:23:01 +0000, Richard Heathfield
<rj*@see.sig.invalidwrote:
>>
Firstly, the Standard allows argc to be 0, in which case argv[0] will
be NULL, in which case your usage function has problems.
Can you imagine a (real) case where this actually might occur? (I'm
just curios).
I have never owned a Mac, and the last time I used one (that I can
recall) is before I began programming in C, but I am given to
understand that some Mac-based implementations do set argc to 0 and
argv to NULL. I may be mistaken in this regard.
>
K&R are less "pedantic" concerning this point than you are. They write
in K&R2, p. 115:

"By convention, argv[0] is the name by which the program
was invoked, so argc is at least 1."

If your claim is true, this claim of K&R is in contradiction to the
standard, right?
Right. I once considered telling dmr about this, but I kept forgetting.
:-)
(Or is this something where ANSI-C and C99 do differ?)
Nope.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Mar 20 '07 #9
On Mar 20, 3:44 am, "NwsGrp1" <nwsg...@googlemail.comwrote:
A colleague is reading through some C articles and was asked if there
are any errors in the following code. Neither of us can spot any
issues, I have compiled it with VC8 and GCC at their strictest
settings and got nothing of note.

Here is the code:

#include <stdio.h>

void usage(char *ptCommand);

int main(int argc, char * argv[]) {
if (argc < 2)
usage(argv[0]);

return 0;

}

void usage(char *ptCommand) {
char usageInfo[1023];

_snprintf(usageInfo, 1023, "Usage: %s \n", ptCommand);

printf(usageInfo);

}

Thank you.
The errors spotted by the others are diagnosed by splint in a fraction
of a second. Also, usage() seems a logical choice for static, since
the end-user should not be calling it.

C:\tmp>splint foo.c
Splint 3.1.1 --- 12 Mar 2007

foo.c: (in function usage)
foo.c(16,3): Unrecognized identifier: _snprintf
Identifier used in code has not been declared. (Use -unrecog to
inhibit
warning)
foo.c(18,2): Format string parameter to printf is not a compile-time
constant:
usageInfo
Format parameter is not known at compile-time. This can lead to
security
vulnerabilities because the arguments cannot be type checked. (Use
-formatconst to inhibit warning)
foo.c(3,6): Function exported but not used outside foo: usage
A declaration is exported, but not used outside this module.
Declaration can
use static qualifier. (Use -exportlocal to inhibit warning)
foo.c(20,1): Definition of usage

Finished checking --- 3 code warnings

C:\tmp>

Mar 20 '07 #10
Gregor H. <nomail@invalidwrites:
[...]
If your claim is true, this claim of K&R is in contradiction to the
standard, right? (Or is this something where ANSI-C and C99 do differ?)
ANSI C and C99 don't differ at all; ANSI has adopted the 1999 ISO C
standard as an ANSI standard.

Yes, we know what you meant; the phrase "ANSI C" usually refers to the
language defined by the 1989 ANSI standard and the 1990 ISO standard.
But, strictly speaking, it's incorrect. I suggest avoiding ambiguity
by referring to "C89" or "C90" (they're the same language) or "C99".

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Mar 20 '07 #11
Richard Heathfield wrote, On 20/03/07 16:14:
Gregor H. said:
>On Tue, 20 Mar 2007 11:23:01 +0000, Richard Heathfield
<rj*@see.sig.invalidwrote:
>>Firstly, the Standard allows argc to be 0, in which case argv[0] will
be NULL, in which case your usage function has problems.
Can you imagine a (real) case where this actually might occur? (I'm
just curios).

I have never owned a Mac, and the last time I used one (that I can
recall) is before I began programming in C, but I am given to
understand that some Mac-based implementations do set argc to 0 and
argv to NULL. I may be mistaken in this regard.
Also in Unix when using the non-standard exec* functions to invoke a
program you get to specify what you want the entire argument list to be,
including argv[0]. If you specify an empty list then that is what will
be passed to the program and argc will be 0. So yes, on Unix your
program really *can* be run with argc==0, although the mechanics of how
you achieve this are off topic here.
>K&R are less "pedantic" concerning this point than you are. They write
in K&R2, p. 115:

"By convention, argv[0] is the name by which the program
was invoked, so argc is at least 1."

If your claim is true, this claim of K&R is in contradiction to the
standard, right?

Right. I once considered telling dmr about this, but I kept forgetting.
:-)
If the "by convention" is considered to apply to the minimum value of
argc as well as the value of argv[0] then it is true, and I would think
this is what was intended by that sentence.
--
Flash Gordon
Mar 20 '07 #12
On Tue, 20 Mar 2007 12:38:49 -0700, Keith Thompson <ks***@mib.orgwrote:
>>
If your claim is true, this claim of K&R is in contradiction to the
standard, right? (Or is this something where ANSI-C and C99 do differ?)
ANSI C and C99 don't differ at all; ANSI has adopted the 1999 ISO C
standard as an ANSI standard.

Yes, we know what you meant.
We? You are many?

Well, at least *I* know what I mean, and it seems you know it too. :-)

We (obviously) mean
>
"C89" or "C90"
here.
G. H.

--

E-mail: info<at>simple-line<Punkt>de
Mar 20 '07 #13
On Tue, 20 Mar 2007 19:57:45 +0000, Flash Gordon <sp**@flash-gordon.me.uk>
wrote:
>>>>
Firstly, the Standard allows argc to be 0, in which case argv[0] will
be NULL, in which case your usage function has problems.

Can you imagine a (real) case where this actually might occur? (I'm
just curios).
I have never owned a Mac, and the last time I used one (that I can
recall) is before I began programming in C, but I am given to
understand that some Mac-based implementations do set argc to 0 and
argv to NULL. I may be mistaken in this regard.
Also in Unix when using the non-standard exec* functions to invoke a
program you get to specify what you want the entire argument list to be,
including argv[0]. If you specify an empty list then that is what will
be passed to the program and argc will be 0. So yes, on Unix your
program really *can* be run with argc==0, although the mechanics of how
you achieve this are off topic here.
So one really has to take this possibility into account, I guess. (?)
>>>
K&R are less "pedantic" concerning this point than you are. They write
in K&R2, p. 115:

"By convention, argv[0] is the name by which the program
was invoked, so argc is at least 1."

If your claim is true, this claim of K&R is in contradiction to the
standard, right?
Right. I once considered telling dmr about this, but I kept forgetting.
:-)
If the "by convention" is considered to apply to the minimum value of
argc as well as the value of argv[0] then it is true, and I would think
this is what was intended by that sentence.
Sorry, I didn't get that. Could you elaborate on that. (I'm just curious.)
G. H.

--

E-mail: info<at>simple-line<Punkt>de
Mar 20 '07 #14
On Tue, 20 Mar 2007 06:27:56 -0500, NwsGrp1 wrote
(in article <11**********************@y80g2000hsf.googlegroups .com>):
On Mar 20, 11:19 am, Beej Jorgensen <b...@beej.uswrote:
>NwsGrp1 <nwsg...@googlemail.comwrote:
>>_snprintf(usageInfo, 1023, "Usage: %s \n", ptCommand);

[snip]
As for "errors", check this out: I named the executable "foo%s" and it
crashed when I ran it. Why?

-Beej

Damn... format string vulnerability. I looked for that in the snprintf
line but not the printf, I was fooled into thinking it was safe after
the snprintf and never thought of actually testing it with something
like "foo%n%n%n".
It's disappointing just how many supposedly professionally written
programs will crap out if you feed format specifiers to it as input.


--
Randy Howard (2reply remove FOOBAR)
"The power of accurate observation is called cynicism by those
who have not got it." - George Bernard Shaw

Mar 20 '07 #15
On Tue, 20 Mar 2007 11:14:01 -0500, Richard Heathfield wrote
(in article <qa******************************@bt.com>):
Gregor H. said:
>On Tue, 20 Mar 2007 11:23:01 +0000, Richard Heathfield
<rj*@see.sig.invalidwrote:
>>>
Firstly, the Standard allows argc to be 0, in which case argv[0] will
be NULL, in which case your usage function has problems.
Can you imagine a (real) case where this actually might occur? (I'm
just curios).

I have never owned a Mac, and the last time I used one (that I can
recall) is before I began programming in C, but I am given to
understand that some Mac-based implementations do set argc to 0 and
argv to NULL. I may be mistaken in this regard.
That might have been true in early Mac OS platforms before OS X came
along, I don't have one to try, but OS X, which is basically a properly
built and working Linux distro with a nicer GUI than most, behaves just
as you would expect it to.

--
Randy Howard (2reply remove FOOBAR)
"The power of accurate observation is called cynicism by those
who have not got it." - George Bernard Shaw

Mar 20 '07 #16
Randy Howard wrote:
On Tue, 20 Mar 2007 11:14:01 -0500, Richard Heathfield wrote
>>
I have never owned a Mac, and the last time I used one (that I can
recall) is before I began programming in C, but I am given to
understand that some Mac-based implementations do set argc to 0 and
argv to NULL. I may be mistaken in this regard.


That might have been true in early Mac OS platforms before OS X came
along, I don't have one to try, but OS X, which is basically a properly
built and working Linux distro with a nicer GUI than most, behaves just
as you would expect it to.
<OT>Nonsense, OS-X is based on BSD</OT>

--
Ian Collins.
Mar 20 '07 #17
Gregor H. <nomail@invalidwrites:
On Tue, 20 Mar 2007 12:38:49 -0700, Keith Thompson <ks***@mib.orgwrote:
>>If your claim is true, this claim of K&R is in contradiction to the
standard, right? (Or is this something where ANSI-C and C99 do differ?)
ANSI C and C99 don't differ at all; ANSI has adopted the 1999 ISO C
standard as an ANSI standard.

Yes, we know what you meant.
We? You are many?
Yes, we (I and the other readers of this newsgroup) are many.
Well, at least *I* know what I mean, and it seems you know it too. :-)
Yes, because I'm familiar with the widespread error of referring to
C89 as "ANSI C".
We (obviously) mean
>>
"C89" or "C90"
here.
If you use the term "ANSI C", most people will know that you mean
C89/C90, but some will insist that the term refers to the standard
currently recognized by ANSI, namely C99.

If you use the term "C89" or "C90" (or "C99"), everyone will know
exactly what you mean. It's even less typing.

I'm simply recommending that you use the term "C89", "C90", or "C99"
rather than "ANSI C", because doing so is more correct, less
ambiguous, and shorter. You can, of course, do whatever you like, but
frankly I can't think of any reason not to follow my advice (not
because it's from me, but just because it's good advice).

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Mar 20 '07 #18
Randy Howard <ra*********@FOOverizonBAR.netwrites:
[...]
That might have been true in early Mac OS platforms before OS X came
along, I don't have one to try, but OS X, which is basically a properly
built and working Linux distro with a nicer GUI than most, behaves just
as you would expect it to.
<WAY_OT>
Mac OS X doesn't use the Linux kernel, so it's not a "Linux distro",
though it does have some similarities.
</WAY_OT>

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Mar 20 '07 #19
On Tue, 20 Mar 2007 16:27:47 -0500, Ian Collins wrote
(in article <56*************@mid.individual.net>):
Randy Howard wrote:
>On Tue, 20 Mar 2007 11:14:01 -0500, Richard Heathfield wrote
>>>
I have never owned a Mac, and the last time I used one (that I can
recall) is before I began programming in C, but I am given to
understand that some Mac-based implementations do set argc to 0 and
argv to NULL. I may be mistaken in this regard.


That might have been true in early Mac OS platforms before OS X came
along, I don't have one to try, but OS X, which is basically a properly
built and working Linux distro with a nicer GUI than most, behaves just
as you would expect it to.
<OT>Nonsense, OS-X is based on BSD</OT>
I didn't mean genetically. Obviously OS X is not running a Linux
kernel, etc.

I was referring to its behavior. It's what I wanted Linux to be for
over a decade before I gave up on it ever arriving.

--
Randy Howard (2reply remove FOOBAR)
"The power of accurate observation is called cynicism by those
who have not got it." - George Bernard Shaw

Mar 20 '07 #20
Gregor H. wrote, On 20/03/07 20:36:
On Tue, 20 Mar 2007 19:57:45 +0000, Flash Gordon <sp**@flash-gordon.me.uk>
wrote:
>>>>Firstly, the Standard allows argc to be 0, in which case argv[0] will
be NULL, in which case your usage function has problems.
>
Can you imagine a (real) case where this actually might occur? (I'm
just curios).

I have never owned a Mac, and the last time I used one (that I can
recall) is before I began programming in C, but I am given to
understand that some Mac-based implementations do set argc to 0 and
argv to NULL. I may be mistaken in this regard.
Also in Unix when using the non-standard exec* functions to invoke a
program you get to specify what you want the entire argument list to be,
including argv[0]. If you specify an empty list then that is what will
be passed to the program and argc will be 0. So yes, on Unix your
program really *can* be run with argc==0, although the mechanics of how
you achieve this are off topic here.
So one really has to take this possibility into account, I guess. (?)
You definitely should.
>>>K&R are less "pedantic" concerning this point than you are. They write
in K&R2, p. 115:

"By convention, argv[0] is the name by which the program
was invoked, so argc is at least 1."

If your claim is true, this claim of K&R is in contradiction to the
standard, right?

Right. I once considered telling dmr about this, but I kept forgetting.
:-)
If the "by convention" is considered to apply to the minimum value of
argc as well as the value of argv[0] then it is true, and I would think
this is what was intended by that sentence.
Sorry, I didn't get that. Could you elaborate on that. (I'm just curious.)
I believe that what was written can be read as:
(A) By convention argv[0] is the name by which the program was invoked.
(B) By convention argc is at least 1 due to (A).

This is true, since it is the convention. However, as it is only a
convention there are times when it does not happen.
--
Flash Gordon
Mar 20 '07 #21
On Tue, 20 Mar 2007 21:13:52 GMT, Randy Howard
<ra*********@FOOverizonBAR.netwrote:
>>>>
Firstly, the Standard allows argc to be 0, in which case argv[0] will
be NULL, in which case your usage function has problems.

Can you imagine a (real) case where this actually might occur? (I'm
just curios).
I have never owned a Mac, and the last time I used one (that I can
recall) is before I began programming in C, but I am given to
understand that some Mac-based implementations do set argc to 0 and
argv to NULL. I may be mistaken in this regard.
That might have been true in early Mac OS platforms before OS X came
along, I don't have one to try, but OS X, which is basically a properly
built and working Linux distro with a nicer GUI than most, behaves just
as you would expect it to.
No, Randy, not a "Linux distro". Mac OS X is rather a BSD system!

See (!):
http://www.bsd.org/

and/or

http://de.wikipedia.org/wiki/Bild:Unix_history.svg
Sincerely,
G. H.

--

E-mail: info<at>simple-line<Punkt>de
Mar 20 '07 #22
On Tue, 20 Mar 2007 16:55:45 -0500, Gregor H. wrote
(in article <er********************************@4ax.com>):
On Tue, 20 Mar 2007 21:13:52 GMT, Randy Howard
<ra*********@FOOverizonBAR.netwrote:
>>>>>
Firstly, the Standard allows argc to be 0, in which case argv[0] will
be NULL, in which case your usage function has problems.
>
Can you imagine a (real) case where this actually might occur? (I'm
just curios).

I have never owned a Mac, and the last time I used one (that I can
recall) is before I began programming in C, but I am given to
understand that some Mac-based implementations do set argc to 0 and
argv to NULL. I may be mistaken in this regard.
That might have been true in early Mac OS platforms before OS X came
along, I don't have one to try, but OS X, which is basically a properly
built and working Linux distro with a nicer GUI than most, behaves just
as you would expect it to.
No, Randy, not a "Linux distro". Mac OS X is rather a BSD system!
*sigh*
--
Randy Howard (2reply remove FOOBAR)
"The power of accurate observation is called cynicism by those
who have not got it." - George Bernard Shaw

Mar 20 '07 #23
In article <fv************@news.flash-gordon.me.uk>,
Flash Gordon <sp**@flash-gordon.me.ukwrote:
>Also in Unix when using the non-standard exec* functions
Is it really necessary to call these functions "non-standard" just
because they are specified in a standard other than the ISO C
standard?

-- Richard
--
"Consideration shall be given to the need for as many as 32 characters
in some alphabets" - X3.4, 1963.
Mar 20 '07 #24
In article <00*****************************@news.verizon.net> ,
Randy Howard <ra*********@FOOverizonBAR.netwrote:
>>That might have been true in early Mac OS platforms before OS X came
along, I don't have one to try, but OS X, which is basically a properly
built and working Linux distro with a nicer GUI than most, behaves just
as you would expect it to.
><OT>Nonsense, OS-X is based on BSD</OT>
>I didn't mean genetically. Obviously OS X is not running a Linux
kernel, etc.

I was referring to its behavior. It's what I wanted Linux to be for
over a decade before I gave up on it ever arriving.
Fair enough, if what you mean by a "properly built and working Linux
distro" is FreeBSD :-) I use MacOS X in preference to Linux becauase
it's much more like the BSD unix I'm used to.

-- Richard

--
"Consideration shall be given to the need for as many as 32 characters
in some alphabets" - X3.4, 1963.
Mar 20 '07 #25
Richard Heathfield <r...@see.sig.invalidwrote:
Gregor H. said:
Richard Heathfield <r...@see.sig.invalidwrote:
>
Firstly, the Standard allows argc to be 0, in which case
argv[0] will be NULL, in which case your usage function has
problems.
Can you imagine a (real) case where this actually might occur?
(I'm just curios).

I have never owned a Mac, and the last time I used one (that I
can recall) is before I began programming in C, but I am given
to understand that some Mac-based implementations do set argc
to 0 and argv to NULL.
Yes, which is non-conforming for hosted implementations. By rights,
argv should be non-null and point to a null char * pointer. It
could be argued that they were valid free-standing implementations
though. [Assuming the implementation documented the state of argc
and argv.]
I may be mistaken in this regard.
Nope, you are correct. MacOS < X had no concept of a command line.
Apple's 'Macinsosh Programmer Workshop' came complete with a command
line that did support a shell from which a C program could receive
arguments, but most C implementations did not operate in that
environment. Instead they simply came with a primitive terminal
emulator. Getting command line arguments required a call to a
non-standard function within main...

argc = ccommand(&argv);

The irony is that they were really only set up to work with
main(void), so the argc/argv parameters actually sat _before_
the stack in memory. It just so happened that the memory was
'reserved' by Apple and happened to be zero initialised (though
the Inside Mac bibles gave no indication that this was always
going to be the case.) More correct usage would be...

int main(void)
{
int argc;
char **argv;
argc = ccommand(&argv);

To cut a long story short, it's a 'real' example, but not a
particularly good one. ;-)

--
Peter

Mar 20 '07 #26
On Tue, 20 Mar 2007 22:17:11 GMT, Randy Howard
<ra*********@FOOverizonBAR.netwrote:
>>>>>>
>Firstly, the Standard allows argc to be 0, in which case argv[0] will
>be NULL, in which case your usage function has problems.
>>
Can you imagine a (real) case where this actually might occur? (I'm
just curios).
>
I have never owned a Mac, and the last time I used one (that I can
recall) is before I began programming in C, but I am given to
understand that some Mac-based implementations do set argc to 0 and
argv to NULL. I may be mistaken in this regard.

That might have been true in early Mac OS platforms before OS X came
along, I don't have one to try, but OS X, which is basically a properly
built and working Linux distro with a nicer GUI than most, behaves just
as you would expect it to.
No, Randy, not a "Linux distro". Mac OS X is rather a BSD system!
*sigh*
Keep cool, Randy. But I agree with you concerning Linux. ;-)
G. H.

--

E-mail: info<at>simple-line<Punkt>de
Mar 20 '07 #27
Peter Nilsson said:
Richard Heathfield <r...@see.sig.invalidwrote:
<snip>
>I am given
to understand that some Mac-based implementations do set argc
to 0 and argv to NULL.

Yes, which is non-conforming for hosted implementations. By rights,
argv should be non-null and point to a null char * pointer.
I'm fascinated but sceptical. Can you convince me?

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Mar 20 '07 #28
Richard Tobin said:
In article <fv************@news.flash-gordon.me.uk>,
Flash Gordon <sp**@flash-gordon.me.ukwrote:
>>Also in Unix when using the non-standard exec* functions

Is it really necessary to call these functions "non-standard" just
because they are specified in a standard other than the ISO C
standard?
In comp.lang.c, "standard" tends to mean ISO/IEC 9899 unless otherwise
specified, so it's not unreasonable to call non-ISO functions
"non-standard" even if they are documented in some other standard. In
newsgroups where such standards are topical, presumably exec* /would/
be standard functions. But here, they are not.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Mar 20 '07 #29
On Tue, 20 Mar 2007 21:29:35 +0100, in comp.lang.c , Gregor H.
<nomail@invalidwrote:
>On Tue, 20 Mar 2007 12:38:49 -0700, Keith Thompson <ks***@mib.orgwrote:
>>>
If your claim is true, this claim of K&R is in contradiction to the
standard, right? (Or is this something where ANSI-C and C99 do differ?)
ANSI C and C99 don't differ at all; ANSI has adopted the 1999 ISO C
standard as an ANSI standard.

Yes, we know what you meant.
We? You are many?
Indeed, We are legion.

--
Mark McIntyre

"Debugging is twice as hard as writing the code in the first place.
Therefore, if you write the code as cleverly as possible, you are,
by definition, not smart enough to debug it."
--Brian Kernighan
Mar 20 '07 #30
"Peter Nilsson" <ai***@acay.com.auwrites:
Richard Heathfield <r...@see.sig.invalidwrote:
[...]
>I have never owned a Mac, and the last time I used one (that I
can recall) is before I began programming in C, but I am given
to understand that some Mac-based implementations do set argc
to 0 and argv to NULL.

Yes, which is non-conforming for hosted implementations. By rights,
argv should be non-null and point to a null char * pointer. It
could be argued that they were valid free-standing implementations
though. [Assuming the implementation documented the state of argc
and argv.]
[...]

Take a look at C99 5.1.2.2.1, "Program startup". The phrase "If the
value of argc is greater than zero" appears twice. It also says "The
value of argc shall be nonnegative."; if it were intended to require
argc to be at least 1, then that could easily have been stated.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Mar 21 '07 #31
On Mar 20, 3:49 pm, Gregor H. <nomail@invalidwrote:
On Tue, 20 Mar 2007 11:23:01 +0000, Richard Heathfield

<r...@see.sig.invalidwrote:
Firstly, the Standard allows argc to be 0, in which case argv[0] will be
NULL, in which case your usage function has problems.

Can you imagine a (real) case where this actually might occur? (I'm just
curios).

K&R are less "pedantic" concerning this point than you are. They write in
K&R2, p. 115:

"By convention, argv[0] is the name by which the program
was invoked, so argc is at least 1."

If your claim is true, this claim of K&R is in contradiction to the
standard, right? (Or is this something where ANSI-C and C99 do differ?)
The C99 draft standard only says that argc >= 0, args [argc] == NULL,
and makes some statements for the case when argc 0. There is no
requirement whatsoever that argc would have to be greater than 0.

Mar 21 '07 #32
Richard Heathfield wrote, On 20/03/07 22:42:
Peter Nilsson said:
>Richard Heathfield <r...@see.sig.invalidwrote:

<snip>
>>I am given
to understand that some Mac-based implementations do set argc
to 0 and argv to NULL.
Yes, which is non-conforming for hosted implementations. By rights,
argv should be non-null and point to a null char * pointer.

I'm fascinated but sceptical. Can you convince me?
How about I convince you that you are correct instead? In N1124 section
5.1.2.2.1 it says in part:
| - The value of argc shall be nonnegative.
| - argv[argc] shall be a null pointer.

Then it goes on to specify what happens if argc is greater than zero.
Since nonnegative is normally considered to include 0 (otherwise it
would say positive) and it says greater than zero when that is what it
means, zero is clearly allowed. 5.1.2.2, by the way, is "Hosted
environment".
--
Flash Gordon
Mar 21 '07 #33
NwsGrp1 wrote:
>
A colleague is reading through some C articles and was asked if
there are any errors in the following code. Neither of us can
spot any issues, I have compiled it with VC8 and GCC at their
strictest settings and got nothing of note.

Here is the code:

#include <stdio.h>

void usage(char *ptCommand);

int main(int argc, char * argv[]) {
if (argc < 2)
usage(argv[0]);

return 0;
}

void usage(char *ptCommand) {
char usageInfo[1023];

_snprintf(usageInfo, 1023, "Usage: %s \n", ptCommand);

printf(usageInfo);
}
No such function as "_snprintf".

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>

--
Posted via a free Usenet account from http://www.teranews.com

Mar 21 '07 #34
On Tue, 20 Mar 2007 23:36:14 +0000, Mark McIntyre
<ma**********@spamcop.netwrote:
>>>
Yes, we know what you meant.
We? You are many?
Indeed, We are legion.
Yes, I feared that. We too.
G. H.

--

E-mail: info<at>simple-line<Punkt>de
Mar 21 '07 #35
Richard Tobin wrote:
Flash Gordon <sp**@flash-gordon.me.ukwrote:
>Also in Unix when using the non-standard exec* functions

Is it really necessary to call these functions "non-standard" just
because they are specified in a standard other than the ISO C
standard?
Yes. Otherwise some dewey eyed newbie might get the impression
that they are generally available.

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>

--
Posted via a free Usenet account from http://www.teranews.com

Mar 21 '07 #36
Mark McIntyre wrote:
Gregor H. <nomail@invalidwrote:
.... snip ...
>
>We? You are many?

Indeed, We are legion.
I thought the legions left Britain in the 3rd century.

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>

--
Posted via a free Usenet account from http://www.teranews.com

Mar 21 '07 #37
Flash Gordon <s...@flash-gordon.me.ukwrote:
Richard Heathfield wrote, On 20/03/07 22:42:
Peter Nilsson said:
Richard Heathfield <r...@see.sig.invalidwrote:
I am given
to understand that some Mac-based implementations do set argc
to 0 and argv to NULL.

Yes, which is non-conforming for hosted implementations. By
rights, argv should be non-null and point to a null char *
pointer.
I'm fascinated but sceptical. Can you convince me?
Of what?
How about I convince you that you are correct instead?
What's at issue?
In N1124 section 5.1.2.2.1 it says in part:
| - The value of argc shall be nonnegative.
| - argv[argc] shall be a null pointer.
What part of this allows argv to be a null pointer?
Then it goes on to specify what happens if argc is greater than
zero. Since nonnegative is normally considered to include 0
(otherwise it would say positive) and it says greater than zero
when that is what it means, zero is clearly allowed.
Who has said otherwise?
5.1.2.2, by the way, is "Hosted environment".
4p6 begins "The two forms of conforming implementation are hosted
and freestanding."

I mention it for no obvious reason.

--
Peter

Mar 21 '07 #38
Peter Nilsson wrote, On 21/03/07 04:54:
Flash Gordon <s...@flash-gordon.me.ukwrote:
>Richard Heathfield wrote, On 20/03/07 22:42:
>>Peter Nilsson said:
Richard Heathfield <r...@see.sig.invalidwrote:
I am given
to understand that some Mac-based implementations do set argc
to 0 and argv to NULL.
Yes, which is non-conforming for hosted implementations. By
rights, argv should be non-null and point to a null char *
pointer.
I'm fascinated but sceptical. Can you convince me?

Of what?
>How about I convince you that you are correct instead?

What's at issue?
>In N1124 section 5.1.2.2.1 it says in part:
| - The value of argc shall be nonnegative.
| - argv[argc] shall be a null pointer.

What part of this allows argv to be a null pointer?
<snip>

I, and probably others, read "argv to NULL" as "argv[0] to NULL". There
is a strong tendency to ready what you expect to see rather than what is
there. I agree that argv cannot be set to null by a conforming
implementation.
--
Flash Gordon
Mar 21 '07 #39
Peter Nilsson said:
Flash Gordon <s...@flash-gordon.me.ukwrote:
>Richard Heathfield wrote, On 20/03/07 22:42:
Peter Nilsson said:
Richard Heathfield <r...@see.sig.invalidwrote:
I am given
to understand that some Mac-based implementations do set argc
to 0 and argv to NULL.
<snip>
>In N1124 section 5.1.2.2.1 it says in part:
| - The value of argc shall be nonnegative.
| - argv[argc] shall be a null pointer.

What part of this allows argv to be a null pointer?
OHHHHHHHHHHHHHHHH, I see! I didn't even notice that. My typo, so mea
culpa. I did of course mean argv[0].

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Mar 21 '07 #40
Keith Thompson <ks***@mib.orgwrites:
"Peter Nilsson" <ai***@acay.com.auwrites:
>Richard Heathfield <r...@see.sig.invalidwrote:
[...]
>>I have never owned a Mac, and the last time I used one (that I
can recall) is before I began programming in C, but I am given
to understand that some Mac-based implementations do set argc
to 0 and argv to NULL.

Yes, which is non-conforming for hosted implementations. By rights,
argv should be non-null and point to a null char * pointer. It
could be argued that they were valid free-standing implementations
though. [Assuming the implementation documented the state of argc
and argv.]
[...]

Take a look at C99 5.1.2.2.1, "Program startup". The phrase "If the
value of argc is greater than zero" appears twice. It also says "The
value of argc shall be nonnegative."; if it were intended to require
argc to be at least 1, then that could easily have been stated.
Whoops, I mis-read it, as Peter Nilsson points out in another followup
in this thread. argc can be 0 and argv[0] can be a null pointer (and
in fact it must be if argc==0), but the very existence of argv[0]
implies that argv itself must be non-null.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Mar 21 '07 #41

>void usage(char *ptCommand) {
char usageInfo[1023];

_snprintf(usageInfo, 1023, "Usage: %s \n", ptCommand);

printf(usageInfo);
}

Thank you.

Use
printf("%s", usageInfo)
in case ptCommand contains format specifiers.
That's why I don't usually use printf if a simpler function works.

void usage(char *ptCommand) {
printf("Usage: ");
puts(ptCommand);
}

Or even fputs(stdout, "Usage: ");
Mar 21 '07 #42
"Army1987" <pl********@for.itwrites:
>>void usage(char *ptCommand) {
char usageInfo[1023];

_snprintf(usageInfo, 1023, "Usage: %s \n", ptCommand);

printf(usageInfo);
}

Thank you.

Use
printf("%s", usageInfo)
in case ptCommand contains format specifiers.

That's why I don't usually use printf if a simpler function works.

void usage(char *ptCommand) {
printf("Usage: ");
puts(ptCommand);
}

Or even fputs(stdout, "Usage: ");
Or even fputs("Usage: ", stdout);

(Incidentally, please don't delete attribution lines.)

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Mar 22 '07 #43

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: pasa | last post by:
I'm an old time python user, but just got bitten by namespaces in eval. If this is an old discussion somewhere, feel free to point me there. Based on the documentation, I would have expected the...
10
by: Mike D | last post by:
I have a table in SQL 2000 with a composite Primary Key on coulumns Instrument_ID (int) and WeekOf (smalldatetime.) I am running asp on win 2003. I insert values using a stored procedure from...
3
by: JKop | last post by:
I have some code which when compiled on my system prints: <output> AnyClass Constructor for: blah AnyClass Copy Constructor for: Copy of blah AnyClass Copy Constructor for: Copy of Copy...
1
by: JMCN | last post by:
hello i receive a runtime error '2465' whenever i run my module in access 97. it says 'Run-time error '2465' OOB Reports can't find the field "DuplicatePayments' referred to in your...
1
by: ravi | last post by:
I have created the following interest to calculate the interest for the following currency pairs. I have tried to combine them in macros using conditions but the next query that is run in the macro...
102
by: Skybuck Flying | last post by:
Sometime ago on the comp.lang.c, I saw a teacher's post asking why C compilers produce so many error messages as soon as a closing bracket is missing. The response was simply because the compiler...
4
by: Robert Schuldenfrei | last post by:
Dear NG, I was about to "improve" concurrency checking with a Timestamp when I discovered that my current code is not working. After about a day of beating my head against the wall, I am...
3
by: David GB | last post by:
I'm trying to set u forms mode authentiaction on a sub-directory. The web.config for the overall site is set to <authentication mode="None" /> In the sub-directory I have a very simple...
5
by: Martin Jørgensen | last post by:
Hello again, Sorry to bother but I guess my C++ book isn't very good since it obviously contains errors so the program code doesn't work with g++. However I don't understand what the problem...
1
by: vkalvakota | last post by:
Hi, I am getting the following error when i am trying to create a view. But if i run the select statement independently it is working fine. Please help me it is very urgent. ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.