Hi,
Is there a standard library function that counts the number of
occurences of a character in a string?
Regards,
Michael 44 8896
Michael McGarry wrote: Hi,
Is there a standard library function that counts the number of occurences of a character in a string?
No.
--
pete
pete wrote: Michael McGarry wrote: Hi,
Is there a standard library function that counts the number of occurences of a character in a string?
No.
If it were, it would probably be implemented along the lines of...
size_t strccnt(const char *s, int c)
{
const unsigned char *us = (const unsigned char *) s;
const unsigned char uc = c;
size_t n = 0;
if (!uc) return 1;
while (*us) if (*us++ == uc) n++;
return n;
}
--
Peter
On 21 Nov 2005 20:30:46 -0800, "Michael McGarry"
<mi*************@gmail.com> wrote: Hi,
Is there a standard library function that counts the number of occurences of a character in a string?
No
<<Remove the del for email>>
Peter Nilsson wrote: pete wrote: Michael McGarry wrote: Hi,
Is there a standard library function that counts the number of occurences of a character in a string? No.
If it were, it would probably be implemented along the lines of...
size_t strccnt(const char *s, int c) { const unsigned char *us = (const unsigned char *) s; const unsigned char uc = c; size_t n = 0; if (!uc) return 1;
return 1 ?
while (*us) if (*us++ == uc) n++; return n; }
What's wrong with a simpler version?
size_t strccnt(const char* s, int c)
{
size_t n = 0;
while(*s != '\0') {
if(*s++ == c)
n++;
}
return n;
}
Bjørn
Peter Nilsson wrote: pete wrote:
Michael McGarry wrote:
Hi,
Is there a standard library function that counts the number of occurences of a character in a string?
No.
If it were, it would probably be implemented along the lines of...
size_t strccnt(const char *s, int c) { const unsigned char *us = (const unsigned char *) s; const unsigned char uc = c; size_t n = 0; if (!uc) return 1;
<snip>
I'd argue for "return 0", or rather, omitting the check altogether. The
NUL character does not occur in the string. That would be more something
for a "memccnt" function.
S.
On 2005-11-22, Skarmander <in*****@dontmailme.com> wrote: Peter Nilsson wrote: pete wrote:
Michael McGarry wrote:
Hi,
Is there a standard library function that counts the number of occurences of a character in a string?
No.
If it were, it would probably be implemented along the lines of...
size_t strccnt(const char *s, int c) { const unsigned char *us = (const unsigned char *) s; const unsigned char uc = c; size_t n = 0; if (!uc) return 1; <snip>
I'd argue for "return 0", or rather, omitting the check altogether. The NUL character does not occur in the string.
Traditionally, the NUL character appears exactly once, at the end of the
string, and this location is returned in strchr/strrchr.
That would be more something for a "memccnt" function.
S.
Jordan Abel wrote: On 2005-11-22, Skarmander <in*****@dontmailme.com> wrote: NUL character does not occur in the string.
Traditionally, the NUL character appears exactly once, at the end of the string, and this location is returned in strchr/strrchr.
N869
7. Library
7.1 Introduction
7.1.1 Definitions of terms
[#1] A string is a contiguous sequence of characters
terminated by and including the first null character.
--
pete
Thanks to all for your help.
Jordan Abel wrote: On 2005-11-22, Skarmander <in*****@dontmailme.com> wrote:
Peter Nilsson wrote:
size_t strccnt(const char *s, int c) { const unsigned char *us = (const unsigned char *) s; const unsigned char uc = c; size_t n = 0; if (!uc) return 1;
<snip>
I'd argue for "return 0", or rather, omitting the check altogether. The NUL character does not occur in the string.
Traditionally, the NUL character appears exactly once, at the end of the string, and this location is returned in strchr/strrchr.
You're right. 7.1.1. "A string is a contiguous sequence of characters
terminated by and including the first null character." This means that a
string is considered to include NUL except where stated otherwise. 1 is
the correct answer. (But I'd make it explicit in the function's
description.)
S.
Bjørn Augestad wrote
(in article <Ob********************@telenor.com>): What's wrong with a simpler version? size_t strccnt(const char* s, int c)
Apart from namespace problems? Not much. :-)
{ size_t n = 0;
while(*s != '\0') { if(*s++ == c) n++; }
return n; }
Bjørn
--
Randy Howard (2reply remove FOOBAR)
"The power of accurate observation is called cynicism by those
who have not got it." - George Bernard Shaw
Randy Howard wrote: Bjørn Augestad wrote (in article <Ob********************@telenor.com>):
What's wrong with a simpler version? size_t strccnt(const char* s, int c)
Apart from namespace problems? Not much. :-)
If you read upthread, Peter Nilsson had posited
his function (with the name strccnt) as how the implementation
would name/code such a function if it were in the standard
library. So in that context the name is fine :)
-David
On 2005-11-22, Randy Howard <ra*********@FOOverizonBAR.net> wrote: Bjørn Augestad wrote (in article <Ob********************@telenor.com>):
What's wrong with a simpler version? size_t strccnt(const char* s, int c)
Apart from namespace problems? Not much. :-)
It's fine on a freestanding implementation
Skarmander <in*****@dontmailme.com> writes: Jordan Abel wrote: On 2005-11-22, Skarmander <in*****@dontmailme.com> wrote:Peter Nilsson wrote:
size_t strccnt(const char *s, int c) { const unsigned char *us = (const unsigned char *) s; const unsigned char uc = c; size_t n = 0; if (!uc) return 1;
<snip>
I'd argue for "return 0", or rather, omitting the check altogether. The NUL character does not occur in the string. Traditionally, the NUL character appears exactly once, at the end of the string, and this location is returned in strchr/strrchr. You're right. 7.1.1. "A string is a contiguous sequence of characters terminated by and including the first null character." This means that a string is considered to include NUL except where stated otherwise. 1 is the correct answer. (But I'd make it explicit in the function's description.)
Yes, just as it's explicit in the standard's description of strchr()
and strrchr().
--
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.
Jordan Abel wrote
(in article <sl*******************@random.yi.org>): On 2005-11-22, Randy Howard <ra*********@FOOverizonBAR.net> wrote: Bjørn Augestad wrote (in article <Ob********************@telenor.com>):
What's wrong with a simpler version? size_t strccnt(const char* s, int c)
Apart from namespace problems? Not much. :-)
It's fine on a freestanding implementation
Contact slashdot, new news at 11.
--
Randy Howard (2reply remove FOOBAR)
"The power of accurate observation is called cynicism by those
who have not got it." - George Bernard Shaw
Bjørn Augestad wrote: Peter Nilsson wrote: size_t strccnt(const char *s, int c) { const unsigned char *us = (const unsigned char *) s; const unsigned char uc = c; size_t n = 0; if (!uc) return 1;
return 1 ?
1 occurrence of 0 in the string. while (*us) if (*us++ == uc) n++; return n; }
What's wrong with a simpler version? size_t strccnt(const char* s, int c) { size_t n = 0; while(*s != '\0') { if(*s++ == c) n++; } return n; }
Your version works for CHAR_MIN <= c <= CHAR_MAX.
Peter's version works for CHAR_MIN <= c <= UCHAR_MAX.
So his version could safely be called like this:
int ch = getchar();
strccnt(s, ch);
as well as
strccnt(s, 'é');
The functions in <ctype.h> and <stdio.h> expect a value
in the range 0 <= c <= UCHAR_MAX.
Jordan Abel wrote: On 2005-11-22, Randy Howard <ra*********@FOOverizonBAR.net> wrote: Bjørn Augestad wrote (in article <Ob********************@telenor.com>):
size_t strccnt(const char* s, int c)
Apart from namespace problems? Not much. :-)
It's fine on a freestanding implementation
Do you have chapter and verse on that?
--
Peter
Old Wolf wrote: Bjørn Augestad wrote:
Peter Nilsson wrote: size_t strccnt(const char *s, int c) { const unsigned char *us = (const unsigned char *) s; const unsigned char uc = c; size_t n = 0; if (!uc) return 1; return 1 ?
1 occurrence of 0 in the string.
First I read that as if(!us), not if(!uc) and was wondering why the
function returned 1 when it received a NULL pointer. My mistake. while (*us) if (*us++ == uc) n++; return n; } What's wrong with a simpler version? size_t strccnt(const char* s, int c) { size_t n = 0; while(*s != '\0') { if(*s++ == c) n++; } return n; }
Your version works for CHAR_MIN <= c <= CHAR_MAX. Peter's version works for CHAR_MIN <= c <= UCHAR_MAX.
So his version could safely be called like this: int ch = getchar(); strccnt(s, ch); as well as strccnt(s, 'é');
The functions in <ctype.h> and <stdio.h> expect a value in the range 0 <= c <= UCHAR_MAX.
You,re right, thanks. (Why can't we all use ASCII only? ;-) )
Bj&oring;rn
Old Wolf wrote: Bjørn Augestad wrote:
Peter Nilsson wrote: size_t strccnt(const char *s, int c) { const unsigned char *us = (const unsigned char *) s; const unsigned char uc = c; size_t n = 0; if (!uc) return 1; return 1 ?
1 occurrence of 0 in the string.
while (*us) if (*us++ == uc) n++; return n; }
What's wrong with a simpler version? size_t strccnt(const char* s, int c) { size_t n = 0; while(*s != '\0') { if(*s++ == c) n++; } return n; }
Your version works for CHAR_MIN <= c <= CHAR_MAX.
It doesn't work when c equals zero.
Peter's version works for CHAR_MIN <= c <= UCHAR_MAX.
I don't see the point in searching for values
outside the range of char, in an array of char,
and neither does strchr.
I think it's more better to compare *s against
the value of c converted to type char,
as in the standard's description of strchr.
size_t str_ccnt(const char* s, int c)
{
size_t n = 0;
do {
if (*s == (char)c) {
n++;
}
} while(*s++ != '\0');
return n;
}
strcmp and strncmp are the only standard string functions
which are based on unsigned char interpretation of bytes.
All of the others, like strchr, are based on char values.
I think strccnt should be more like strchr, than like strcmp.
--
pete
Peter Nilsson wrote: Jordan Abel wrote: On 2005-11-22, Randy Howard <ra*********@FOOverizonBAR.net> wrote: Bjørn Augestad wrote (in article <Ob********************@telenor.com>):
> size_t strccnt(const char* s, int c)
Apart from namespace problems? Not much. :-)
It's fine on a freestanding implementation
Do you have chapter and verse on that?
Jordan Abel has an intense desire
to find some context in which it is OK
to use reserved identifiers to name his functions.
I don't know why.
--
pete
On 2005-11-23, pete <pf*****@mindspring.com> wrote: Peter Nilsson wrote: Jordan Abel wrote: > On 2005-11-22, Randy Howard <ra*********@FOOverizonBAR.net> wrote: > > Bjørn Augestad wrote > > (in article <Ob********************@telenor.com>): > > > >> size_t strccnt(const char* s, int c) > > > > Apart from namespace problems? Not much. :-) > > It's fine on a freestanding implementation
Do you have chapter and verse on that?
Jordan Abel has an intense desire to find some context in which it is OK to use reserved identifiers to name his functions. I don't know why.
.....wtf? when did this become personal? What did i ever do to you?
pete wrote: I don't see the point in searching for values outside the range of char, in an array of char,
The whole notion of plain char is flawed though.
and neither does strchr. I think it's more better to compare *s against
more better? ;)
the value of c converted to type char, as in the standard's description of strchr.
size_t str_ccnt(const char* s, int c) { size_t n = 0;
do { if (*s == (char)c) { n++; } } while(*s++ != '\0');
The null character is required to be all bits zero. This (non at all
uncommon
style) may stop short on implementations where plain char has
(non-trapping)
trap representations.
return n; }
strcmp and strncmp are the only standard string functions which are based on unsigned char interpretation of bytes.
You don't think strcpy uses bytes? The specifications say it copies
characters, not char.
All of the others, like strchr, are based on char values.
And strchr is flawed for that reason. Members of the extended character
set
may not have values representable as char.
[Aside, there is no requirement that CHAR_MAX == SCHAR_MAX
in the case that plain char is signed.]
Many of the functions in the C standard library are the way they are
because that's how they were implemented and used prior to
standardisation. C89 put greater emphasis on preserving backwards
compatibility, than it did on making the standard library consistent.
I think strccnt should be more like strchr, than like strcmp.
Fair enough. I disagree.
But then I think plain char should be unsigned on all implementations.
--
Peter
"Peter Nilsson" <ai***@acay.com.au> writes:
[...] [Aside, there is no requirement that CHAR_MAX == SCHAR_MAX in the case that plain char is signed.]
Yes, there is.
C99 5.2.4.2.1p2 says:
If the value of an object of type char is treated as a signed
integer when used in an expression, the value of CHAR_MIN shall be
the same as that of SCHAR_MIN and the value of CHAR_MAX shall be
the same as that of SCHAR_MAX. Otherwise, the value of CHAR_MIN
shall be 0 and the value of CHAR_MAX shall be the same as that of
UCHAR_MAX.
--
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.
Keith Thompson wrote: "Peter Nilsson" <ai***@acay.com.au> writes: [...] [Aside, there is no requirement that CHAR_MAX == SCHAR_MAX in the case that plain char is signed.]
Yes, there is.
C99 5.2.4.2.1p2 says:
Yes, I meant to say (but came nowhere near to writing), that SCHAR_MAX
may still be 127 even if CHAR_BIT > 8. In context, that means that a
plain
(signed) char may not be able to represent all possible character
values
beyond the basic execution character set.
--
Peter
Michael McGarry wrote: Hi,
Is there a standard library function that counts the number of occurences of a character in a string?
Regards,
Michael
No, but like most string function not included in the standard you can
roll your own fairly easily:
#include <errno.h>
#include <stddef.h>
#include <string.h>
/************************************************** ********************/
/* Name: */
/* chrcount(). */
/* */
/* Description: */
/* The chrcount() function counts the number of times a character */
/* value appears in a string and returns the count to the caller */
/* */
/* Arguments: */
/* const char *string - The string to search. */
/* int chr - The character value to search for. */
/* */
/* */
/* Return Value: */
/* The number of times the character value appeared in the string */
/* */
/************************************************** ********************/
size_t
chrcount(char *s1, int ch)
{
size_t count = 0; /* The count to return */
if ( s1 == NULL )
errno = EINVAL;
else while ( *s1 )
if ( *s1++ == ch )
count++;
return count; /* Return the count */
}
Stan Milam <st*****@swbell.net> wrote: size_t chrcount(char *s1, int ch) { size_t count = 0; /* The count to return */
if ( s1 == NULL ) errno = EINVAL;
Hm, I can see that testing the input for usability can be of help. But
we all know that this function could be passed any pointer valid
or not and I hardly undesrtand why one would get meaningfull error
messages for a pretty simple (but IMO very unlikly) case that there
is a NULL pointer passed but not if the passed pointer points to
other not usable locations.
--
Z (zo**********@web.de)
"LISP is worth learning for the profound enlightenment experience
you will have when you finally get it; that experience will make you
a better programmer for the rest of your days." -- Eric S. Raymond
On Fri, 25 Nov 2005 11:44:14 +0000 (UTC), Zoran Cutura
<zo**********@web.de> wrote: Stan Milam <st*****@swbell.net> wrote: size_t chrcount(char *s1, int ch) { size_t count = 0; /* The count to return */
if ( s1 == NULL ) errno = EINVAL;
Hm, I can see that testing the input for usability can be of help. But we all know that this function could be passed any pointer valid or not and I hardly undesrtand why one would get meaningfull error messages for a pretty simple (but IMO very unlikly) case that there is a NULL pointer passed but not if the passed pointer points to other not usable locations.
One does what one can within the scope of the language. You can test
for NULL. You cannot portably test for most other kinds of "invalid"
pointers, such as one pointing to a freed area or one that has not yet
been initialized. Whether testing for this one case is worth the
effort is a quality of implementation issue.
<<Remove the del for email>>
Barry Schwarz <sc******@deloz.net> wrote: On Fri, 25 Nov 2005 11:44:14 +0000 (UTC), Zoran Cutura <zo**********@web.de> wrote:
Stan Milam <st*****@swbell.net> wrote: size_t chrcount(char *s1, int ch) { size_t count = 0; /* The count to return */
if ( s1 == NULL ) errno = EINVAL;
Hm, I can see that testing the input for usability can be of help. But we all know that this function could be passed any pointer valid or not and I hardly undesrtand why one would get meaningfull error messages for a pretty simple (but IMO very unlikly) case that there is a NULL pointer passed but not if the passed pointer points to other not usable locations.
One does what one can within the scope of the language. You can test for NULL. You cannot portably test for most other kinds of "invalid" pointers, such as one pointing to a freed area or one that has not yet been initialized. Whether testing for this one case is worth the effort is a quality of implementation issue.
So would you think that a implementation like the above has a high or
low qoi? Others?
--
Z (zo**********@web.de)
"LISP is worth learning for the profound enlightenment experience
you will have when you finally get it; that experience will make you
a better programmer for the rest of your days." -- Eric S. Raymond
Zoran Cutura <zo**********@web.de> writes: Barry Schwarz <sc******@deloz.net> wrote: On Fri, 25 Nov 2005 11:44:14 +0000 (UTC), Zoran Cutura <zo**********@web.de> wrote:
Stan Milam <st*****@swbell.net> wrote:
size_t chrcount(char *s1, int ch) { size_t count = 0; /* The count to return */
if ( s1 == NULL ) errno = EINVAL;
Hm, I can see that testing the input for usability can be of help. But we all know that this function could be passed any pointer valid or not and I hardly undesrtand why one would get meaningfull error messages for a pretty simple (but IMO very unlikly) case that there is a NULL pointer passed but not if the passed pointer points to other not usable locations.
One does what one can within the scope of the language. You can test for NULL. You cannot portably test for most other kinds of "invalid" pointers, such as one pointing to a freed area or one that has not yet been initialized. Whether testing for this one case is worth the effort is a quality of implementation issue.
So would you think that a implementation like the above has a high or low qoi? Others?
Both. It's high because it catches certain errors that might
otherwise lead to undefined behavior, and low because by doing so it
can lead the user to assume it will catch more errors than it actually
does. Quality is not a linear measurement. If it were, a simple
while (1) {
quality ++;
}
would put us all out of business. (Well, not really; implemeting the
"++" operator would still be non-trivial.)
--
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.
In article <ne********************@news.daimlerchrysler.com >, Zoran Cutura <zo**********@web.de> writes: Stan Milam <st*****@swbell.net> wrote: size_t chrcount(char *s1, int ch) { size_t count = 0; /* The count to return */
if ( s1 == NULL ) errno = EINVAL;
Hm, I can see that testing the input for usability can be of help. But we all know that this function could be passed any pointer valid or not and I hardly undesrtand why one would get meaningfull error messages for a pretty simple (but IMO very unlikly) case that there is a NULL pointer passed but not if the passed pointer points to other not usable locations.
A helmet doesn't protect against all types of injuries, so why use
one at all?
In my opinion - based on many years of experience with C code, my own
and others', a null (not "NULL") pointer is a common error case. Even
if it weren't, however, it's simple to check for, and the check is
almost free. (In any code path where its cost is significant, using
a function like this would be absurd anyway.)
--
Michael Wojcik mi************@microfocus.com
Is it any wonder the world's gone insane, with information come to be
the only real medium of exchange? -- Thomas Pynchon
Peter Nilsson wrote: The whole notion of plain char is flawed though.
But then I think plain char should be unsigned on all implementations.
If you're really intending strccnt to be used on arrays
of any byte type,
then it would have been more better for you to have written
size_t strccnt(const void *s, int c)
instead of
size_t strccnt(const char *s, int c)
--
pete
Jordan Abel wrote: On 2005-11-23, pete <pf*****@mindspring.com> wrote: Peter Nilsson wrote: Jordan Abel wrote: > On 2005-11-22, Randy Howard > <ra*********@FOOverizonBAR.net> wrote: > > Bjørn Augestad wrote > > (in article <Ob********************@telenor.com>): > > > >> size_t strccnt(const char* s, int c) > > > > Apart from namespace problems? Not much. :-) > > It's fine on a freestanding implementation
Do you have chapter and verse on that?
Jordan Abel has an intense desire to find some context in which it is OK to use reserved identifiers to name his functions. I don't know why.
....wtf? when did this become personal? What did i ever do to you?
I was guessing that you had no intention of backing up your
bogus claim about freestanding implementations.
--
pete
On 2005-12-01, pete <pf*****@mindspring.com> wrote: Jordan Abel wrote: On 2005-11-23, pete <pf*****@mindspring.com> wrote: > Peter Nilsson wrote: >> >> Jordan Abel wrote: >> > On 2005-11-22, Randy Howard >> > <ra*********@FOOverizonBAR.net> wrote: >> > > Bjørn Augestad wrote >> > > (in article <Ob********************@telenor.com>): >> > > >> > >> size_t strccnt(const char* s, int c) >> > > >> > > Apart from namespace problems? Not much. :-) >> > >> > It's fine on a freestanding implementation >> >> Do you have chapter and verse on that? > > Jordan Abel has an intense desire > to find some context in which it is OK > to use reserved identifiers to name his functions. > I don't know why.
....wtf? when did this become personal? What did i ever do to you?
I was guessing that you had no intention of backing up your bogus claim about freestanding implementations.
Your wording suggested some intense personal hatred towards me which
cannot be accounted for by this explanation [unless you are heavily
emotionally invested in your interpretation of what is and is not
allowed for freestanding implementations]
It's reserved for the library. Freestanding implementations provide
only a very restricted subset of the library, which does not include
either of the headers these are reserved for. Many of the
requirements in the standard implicitly only apply to hosted
implementations, and it's reasonable to suppose that the 'reserved
as external identifiers in all contexts' for functions which can
only appear in two headers that are not present on freestanding
implementations is one of those, given that it is a library issue.
You are the one who needs to back up your claim.
Jordan Abel wrote: On 2005-12-01, pete <pf*****@mindspring.com> wrote: Jordan Abel wrote: On 2005-11-23, pete <pf*****@mindspring.com> wrote: > Peter Nilsson wrote: >> >> Jordan Abel wrote: >> > On 2005-11-22, Randy Howard >> > <ra*********@FOOverizonBAR.net> wrote: >> > > Bjørn Augestad wrote >> > > (in article <Ob********************@telenor.com>): >> > > >> > >> size_t strccnt(const char* s, int c) >> > > >> > > Apart from namespace problems? Not much. :-) >> > >> > It's fine on a freestanding implementation >> >> Do you have chapter and verse on that? > > Jordan Abel has an intense desire > to find some context in which it is OK > to use reserved identifiers to name his functions. > I don't know why.
....wtf? when did this become personal? What did i ever do to you?
I was guessing that you had no intention of backing up your bogus claim about freestanding implementations.
Your wording suggested some intense personal hatred towards me which cannot be accounted for by this explanation [unless you are heavily emotionally invested in your interpretation of what is and is not allowed for freestanding implementations]
It's reserved for the library. Freestanding implementations provide only a very restricted subset of the library, which does not include either of the headers these are reserved for. Many of the requirements in the standard implicitly only apply to hosted implementations, and it's reasonable to suppose that the 'reserved as external identifiers in all contexts' for functions which can only appear in two headers that are not present on freestanding implementations is one of those, given that it is a library issue. You are the one who needs to back up your claim.
I was hoping that you wouldn't need to be told again
that it doen't matter which headers are included.
--
pete
On 2005-12-01, pete <pf*****@mindspring.com> wrote: Jordan Abel wrote: On 2005-12-01, pete <pf*****@mindspring.com> wrote: > Jordan Abel wrote: >> >> On 2005-11-23, pete <pf*****@mindspring.com> wrote: >> > Peter Nilsson wrote: >> >> >> >> Jordan Abel wrote: >> >> > On 2005-11-22, Randy Howard >> >> > <ra*********@FOOverizonBAR.net> wrote: >> >> > > Bjørn Augestad wrote >> >> > > (in article <Ob********************@telenor.com>): >> >> > > >> >> > >> size_t strccnt(const char* s, int c) >> >> > > >> >> > > Apart from namespace problems? Not much. :-) >> >> > >> >> > It's fine on a freestanding implementation >> >> >> >> Do you have chapter and verse on that? >> > >> > Jordan Abel has an intense desire >> > to find some context in which it is OK >> > to use reserved identifiers to name his functions. >> > I don't know why. >> >> ....wtf? when did this become personal? What did i ever do to you? > > I was guessing that you had no intention of backing up your bogus > claim about freestanding implementations.
Your wording suggested some intense personal hatred towards me which cannot be accounted for by this explanation [unless you are heavily emotionally invested in your interpretation of what is and is not allowed for freestanding implementations]
It's reserved for the library. Freestanding implementations provide only a very restricted subset of the library, which does not include either of the headers these are reserved for. Many of the requirements in the standard implicitly only apply to hosted implementations, and it's reasonable to suppose that the 'reserved as external identifiers in all contexts' for functions which can only appear in two headers that are not present on freestanding implementations is one of those, given that it is a library issue. You are the one who needs to back up your claim.
I was hoping that you wouldn't need to be told again that it doen't matter which headers are included.
That wasn't what i said, if you'd bother actually reading for
comprehension - the fact that the headers _exist_ or not [in a
freestanding impementaton, they do not] would seem a bit more relevant
than whether they're included - at least, that's my understanding of
'freestanding implementation'
the fact that you turned this into some kind of personal attack against
me is at this point more of an issue than whether i was right or not.
Jordan Abel said: On 2005-12-01, pete <pf*****@mindspring.com> wrote: Jordan Abel wrote: You are the one who needs to back up your claim.
I was hoping that you wouldn't need to be told again that it doen't matter which headers are included.
That wasn't what i said, if you'd bother actually reading for comprehension -
Could you guys knock it off, please? Clearly you both know what you're
talking about, so you ought to be able to arrive at a correct conclusion
amicably - or at least without bloodshed.
It can sometimes be difficult for bright people to remember that other
people can be bright too - especially when they are disagreeing. Billy
Chambless famously said: "The way I see it, an intelligent person who
disagrees with me is probably the most important person I'll interact with
on any given day."
Come on lads - make friends, eh? :-)
--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999 http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
Jordan Abel wrote: On 2005-12-01, pete <pf*****@mindspring.com> wrote: Jordan Abel wrote: On 2005-12-01, pete <pf*****@mindspring.com> wrote: Jordan Abel wrote: > On 2005-11-23, pete <pf*****@mindspring.com> wrote: >> Peter Nilsson wrote: >>> Jordan Abel wrote: >>>> On 2005-11-22, Randy Howard >>>> <ra*********@FOOverizonBAR.net> wrote: >>>>> Bjørn Augestad wrote >>>>> (in article <Ob********************@telenor.com>): >>>>> >>>>>> size_t strccnt(const char* s, int c) >>>>> Apart from namespace problems? Not much. :-) >>>> It's fine on a freestanding implementation >>> Do you have chapter and verse on that?
<snip>
It's reserved for the library. Freestanding implementations provide only a very restricted subset of the library, which does not include either of the headers these are reserved for. Many of the requirements in the standard implicitly only apply to hosted implementations, and it's reasonable to suppose that the 'reserved as external identifiers in all contexts' for functions which can only appear in two headers that are not present on freestanding implementations is one of those, given that it is a library issue. You are the one who needs to back up your claim. I was hoping that you wouldn't need to be told again that it doen't matter which headers are included.
That wasn't what i said, if you'd bother actually reading for comprehension - the fact that the headers _exist_ or not [in a freestanding impementaton, they do not] would seem a bit more relevant than whether they're included - at least, that's my understanding of 'freestanding implementation'
My understanding is that although the free standing implementation is
not required to provide them, it is allowed to provide them, and since a
freestanding implementation is allowed to provide the headers and
functions they declare the comment about the identifiers being reserved
must still hold.
In n1134, section 5.1.2, it says:
| In a freestanding environment (in which C program execution may take
| place without any benefit of an operating system), the name and type
| of the function called at program startup are implementation-defined.
| Any library facilities available to a freestanding program, other than
| the minimal set required by clause 4, are implementation-defined.
Which clearly allows the other headers and corresponding functions to be
defined not as an extension (and certainly not one that breaks
conformance), but as an implementation defined feature. So any program
attempting to declare such an identifier clearly (IMHO) invokes
undefined behaviour on an implementation defining those facilities as
being provided.
Also, I can find nowhere the standard provides an exception to the
identifiers being reserved for freestanding environments.
the fact that you turned this into some kind of personal attack against me is at this point more of an issue than whether i was right or not.
I agree that this should not be personal. It's about the C language (or
should be) not about the people.
--
Flash Gordon
Living in interesting times.
Although my email address says spam, it is real and I read it.
Jordan Abel <jm****@purdue.edu> writes:
[snip] >> Jordan Abel wrote: >> > On 2005-11-22, Randy Howard >> > <ra*********@FOOverizonBAR.net> wrote: >> > > Bjørn Augestad wrote >> > > (in article <Ob********************@telenor.com>): >> > > >> > >> size_t strccnt(const char* s, int c) >> > > >> > > Apart from namespace problems? Not much. :-) >> > >> > It's fine on a freestanding implementation
[snip] It's reserved for the library. Freestanding implementations provide only a very restricted subset of the library, which does not include either of the headers these are reserved for. Many of the requirements in the standard implicitly only apply to hosted implementations, and it's reasonable to suppose that the 'reserved as external identifiers in all contexts' for functions which can only appear in two headers that are not present on freestanding implementations is one of those, given that it is a library issue.
It's an interesting question. I *think* that names starting with
"str" are reserved for use as identifiers with external linkage on
both hosted and freestanding implementations.
C99 7.1.3 says:
If the program declares or defines an identifier in a context in
which it is reserved (other than as allowed by 7.1.4), or defines
a reserved identifier as a macro name, the behavior is undefined.
so a program that uses "strccnt" as an identifier with external linkage
cannot be strictly conforming.
C99 4p6 says:
A _conforming freestanding implementation_ shall accept any
strictly conforming program that does not use complex types and in
which the use of the features specified in the library clause
(clause 7) is confined to the contents of the standard headers
<float.h>, <iso646.h>, <limits.h>, <stdarg.h>, <stdbool.h>,
<stddef.h>, and <stdint.h>. A conforming implementation may have
extensions (including additional library functions), provided they
do not alter the behavior of any strictly conforming program.
Since parts of clause 7 do apply to freestanding implementations, it's
reasonable to assume that 7.1.3, which is part of the introduction
applies to freestanding implementations.
Note that, as far as I can tell, a conforming hosted implementation
also qualifies as a conforming freestanding implementation, and
freestanding implementations can provide subsets of the standard
library. It seems reasonable to avoid using reserved identifiers
anyway.
(Of course, this is a fairly minor technical dispute on which people
can reasonable disagree; pete, you're taking this way too personally.)
--
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.
Jordan Abel wrote: On 2005-12-01, pete <pf*****@mindspring.com> wrote: Jordan Abel wrote: On 2005-12-01, pete <pf*****@mindspring.com> wrote: > Jordan Abel wrote: >> >> On 2005-11-23, pete <pf*****@mindspring.com> wrote: >> > Peter Nilsson wrote: >> >> >> >> Jordan Abel wrote: >> >> > On 2005-11-22, Randy Howard >> >> > <ra*********@FOOverizonBAR.net> wrote: >> >> > > Bjørn Augestad wrote >> >> > > (in article <Ob********************@telenor.com>): >> >> > > >> >> > >> size_t strccnt(const char* s, int c) >> >> > > >> >> > > Apart from namespace problems? Not much. :-) >> >> > >> >> > It's fine on a freestanding implementation >> >> >> >> Do you have chapter and verse on that? >> > >> > Jordan Abel has an intense desire >> > to find some context in which it is OK >> > to use reserved identifiers to name his functions. >> > I don't know why. >> >> ....wtf? when did this become personal? >> What did i ever do to you?
It's reserved for the library. Freestanding implementations provide only a very restricted subset of the library, which does not include either of the headers these are reserved for.
There is no "the headers these are reserved for"
7.26 Future library directions
[#1] The following names are grouped under individual
headers for convenience. All external names described below
are reserved no matter what headers are included by the
program.
I was hoping that you wouldn't need to be told again that it doen't matter which headers are included.
the fact that you turned this into some kind of personal attack against me is at this point more of an issue than whether i was right or not.
The last time that I quoted you
that same part of the C99 last public draft,
the stupidest response that you were able to conjure up
was that that C99 wasn't the standard that you were interested in.
The C89 standard said exactly the same thing.
--
pete
Michael Wojcik wrote: In article <ne********************@news.daimlerchrysler.com >, Zoran Cutura <zo**********@web.de> writes: Stan Milam <st*****@swbell.net> wrote: size_t chrcount(char *s1, int ch) { size_t count = 0; /* The count to return */
if ( s1 == NULL ) errno = EINVAL;
Hm, I can see that testing the input for usability can be of help. But we all know that this function could be passed any pointer valid or not and I hardly undesrtand why one would get meaningfull error messages for a pretty simple (but IMO very unlikly) case that there is a NULL pointer passed but not if the passed pointer points to other not usable locations.
A helmet doesn't protect against all types of injuries, so why use one at all?
In my opinion - based on many years of experience with C code, my own and others', a null (not "NULL") pointer is a common error case. Even if it weren't, however, it's simple to check for, and the check is almost free. (In any code path where its cost is significant, using a function like this would be absurd anyway.)
Writing code to check errno after the return,
isn't any simpler than checking the input for NULL
prior to the function call.
--
pete mw*****@newsguy.com (Michael Wojcik) writes: A helmet doesn't protect against all types of injuries, so why use one at all?
H*lm*ts are controversial. The above statement is a great way to
start a flame war someplace like rec.bicycles.misc.
--
"To get the best out of this book, I strongly recommend that you read it."
--Richard Heathfield
In article <43***********@mindspring.com>, pete <pf*****@mindspring.com> writes: Michael Wojcik wrote: In article <ne********************@news.daimlerchrysler.com >, Zoran Cutura <zo**********@web.de> writes: Stan Milam <st*****@swbell.net> wrote: > > size_t > chrcount(char *s1, int ch) > { > size_t count = 0; /* The count to return */ > > if ( s1 == NULL ) > errno = EINVAL;
I can see that testing the input for usability can be of help. But we all know that this function could be passed any pointer valid or not and I hardly undesrtand why one would get meaningfull error messages for a pretty simple (but IMO very unlikly) case that there is a NULL pointer passed but not if the passed pointer points to other not usable locations.
In my opinion - based on many years of experience with C code, my own and others', a null (not "NULL") pointer is a common error case. Even if it weren't, however, it's simple to check for, and the check is almost free. (In any code path where its cost is significant, using a function like this would be absurd anyway.)
Writing code to check errno after the return, isn't any simpler than checking the input for NULL prior to the function call.
Regardless of whether errno is checked, a version which protects
against null (not "NULL") input will avoid UB. Whether it makes
things "simpler" for the caller is utterly irrelevant.
--
Michael Wojcik mi************@microfocus.com
Sure we're tossing out fluff, but tell me, where does anyone deal in words
with substance? -- Haruki Murakami (trans Alfred Birnbaum)
In article <87************@benpfaff.org>, Ben Pfaff <bl*@cs.stanford.edu> writes: mw*****@newsguy.com (Michael Wojcik) writes:
A helmet doesn't protect against all types of injuries, so why use one at all? H*lm*ts are controversial.
I am unable to find any topic of significance which is not somewhere
controversial.
The above statement is a great way to start a flame war someplace like rec.bicycles.misc.
Since this thread is not crossposted to rec.bicycles.misc, that
hardly seems relevant.
--
Michael Wojcik mi************@microfocus.com
"We are facing a dire shortage of clowns," said Erickson, also known as
Jingles.
On 6 Dec 2005 15:30:08 GMT, in comp.lang.c , mw*****@newsguy.com
(Michael Wojcik) wrote: Since this thread is not crossposted to rec.bicycles.misc, that hardly seems relevant.
read up on the word "analogy" in your favorite dictionary... :-)
----== Posted via Newsfeeds.Com - Unlimited-Unrestricted-Secure Usenet News==---- http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----
In article <ll********************************@4ax.com>, Mark McIntyre <ma**********@spamcop.net> writes: On 6 Dec 2005 15:30:08 GMT, in comp.lang.c , mw*****@newsguy.com (Michael Wojcik) wrote: Since this thread is not crossposted to rec.bicycles.misc, that hardly seems relevant.
read up on the word "analogy" in your favorite dictionary... :-)
Sure. While I'm doing so, perhaps you would like to take a look at
"antirrhesis", "ignoratio elenchi", and "aschematiston".
I'm sure there's a specific rhetorical term for "treating a false
analogy as literal", but I can't think what it is at the moment.
--
Michael Wojcik mi************@microfocus.com
Auden often writes like Disney. Like Disney, he knows the shape of beasts --
(& incidently he, too, might have a company of artists producing his lines) --
unlike Lawrence, he does not know what shapes or motivates these beasts.
-- Dylan Thomas This discussion thread is closed Replies have been disabled for this discussion. Similar topics
2 posts
views
Thread by Tesla |
last post: by
|
4 posts
views
Thread by Victor Engmark |
last post: by
|
10 posts
views
Thread by Sean Berry |
last post: by
|
1 post
views
Thread by j |
last post: by
|
3 posts
views
Thread by utab |
last post: by
|
2 posts
views
Thread by DaFerg |
last post: by
| |
4 posts
views
Thread by MLH |
last post: by
| | | | | | | | | | | |