473,466 Members | 1,301 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

min/max in stdlib.h?!

Are the macros min() and max() part of stdlib.h or not? (according to the
standard?)

I have the following problem: I defined my own min() / max() macros because
my compiler (MinGW) does NOT define them. When I tried to compile my program
with lcc-win32 the compiler complained about macro redefinition, because
min() and max() are defined in lcc's stdlib.h..

So do these macros belong there or not?

Jan 5 '08 #1
38 42800
copx said:
Are the macros min() and max() part of stdlib.h or not? (according to the
standard?)
No.
I have the following problem: I defined my own min() / max() macros
because my compiler (MinGW) does NOT define them. When I tried to compile
my program with lcc-win32 the compiler complained about macro
redefinition, because min() and max() are defined in lcc's stdlib.h..

So do these macros belong there or not?
No, they don't. If they are nevertheless placed there by the
implementation, check that you are invoking the implementation in
conforming mode. If so, then you have uncovered a bug in the
implementation.

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Jan 5 '08 #2
copx wrote:
Are the macros min() and max() part of stdlib.h or not? (according to the
standard?)

I have the following problem: I defined my own min() / max() macros because
my compiler (MinGW) does NOT define them. When I tried to compile my program
with lcc-win32 the compiler complained about macro redefinition, because
min() and max() are defined in lcc's stdlib.h..

So do these macros belong there or not?
No.

Did you invoke the compiler in conforming mode?

--
Ian Collins.
Jan 5 '08 #3
copx wrote:
Are the macros min() and max() part of stdlib.h or not? (according to the
standard?)

I have the following problem: I defined my own min() / max() macros because
my compiler (MinGW) does NOT define them. When I tried to compile my program
with lcc-win32 the compiler complained about macro redefinition, because
min() and max() are defined in lcc's stdlib.h..

So do these macros belong there or not?
They are not in the standard.
Note that the definition in stdlib.h is:

#ifndef max
#define max(a,b) (((a) (b)) ? (a) : (b))
#define min(a,b) (((a) < (b)) ? (a) : (b))
#endif

If you define those macros before including stdlib.h
yours will be taken. Besides, the compiler just
emits a warning.

--
jacob navia
jacob at jacob point remcomp point fr
logiciels/informatique
http://www.cs.virginia.edu/~lcc-win32
Jan 5 '08 #4
P.S.
Please do the same:
#ifndef max
#define ... // your definition
#endif

This will work in lcc and mingw

--
jacob navia
jacob at jacob point remcomp point fr
logiciels/informatique
http://www.cs.virginia.edu/~lcc-win32
Jan 5 '08 #5

"Ian Collins" <ia******@hotmail.comschrieb im Newsbeitrag
news:5u*************@mid.individual.net...
copx wrote:
>Are the macros min() and max() part of stdlib.h or not? (according to the
standard?)

I have the following problem: I defined my own min() / max() macros
because
my compiler (MinGW) does NOT define them. When I tried to compile my
program
with lcc-win32 the compiler complained about macro redefinition, because
min() and max() are defined in lcc's stdlib.h..

So do these macros belong there or not?
No.
Ok, thanks.
Did you invoke the compiler in conforming mode?
Yes, it did.
Jan 5 '08 #6
copx said:
"Ian Collins" <ia******@hotmail.comschrieb im Newsbeitrag
news:5u*************@mid.individual.net...
>Did you invoke the compiler in conforming mode?

Yes, it did.
If you invoked the implementation in its conforming mode and it defined min
and max in stdlib.h, it doesn't really *have* a conforming mode.

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Jan 5 '08 #7
jacob navia wrote, On 05/01/08 10:30:

<snip min/max being defined in stdlib.h even in conforming mode>
They go away in conforming mode *now* ...

:-)

Will be in the next release
Perhaps rather that fixing these things one at a time when people
complain you should review all of your standard headers and make sure
than in conforming mode they define what the standard requires and
nothing more (at least, nothing more that is not in your namespace as
implementer, you can still define __ya_bo_sucks_to_you if you want).
--
Flash Gordon
Jan 5 '08 #8
"copx" <co**@gazeta.plwrote in comp.lang.c:
Are the macros min() and max() part of stdlib.h or not? (according to
the standard?)

If ever in doubt about whether something's Standard C, type it into the
search box on this page:

http://www.dinkumware.com/manuals/default.aspx

It also contains a C++ reference, so be sure also to check that it's
definitely supported in C, and not just in C++.

--
Tomás Ó hÉilidhe
Jan 5 '08 #9
copx wrote:
>
Are the macros min() and max() part of stdlib.h or not? (according
to the standard?)

I have the following problem: I defined my own min() / max()
macros because my compiler (MinGW) does NOT define them. When I
tried to compile my program with lcc-win32 the compiler
complained about macro redefinition, because min() and max() are
defined in lcc's stdlib.h..

So do these macros belong there or not?
They do not, and illustrate another failure of lcc-win32 to meet
the C standard. Quoting from N869:

7.20 General utilities <stdlib.h>

[#1] The header <stdlib.hdeclares five types and several
functions of general utility, and defines several
macros.234)

...

[#3] The macros defined are NULL (described in 7.17);

EXIT_FAILURE
and
EXIT_SUCCESS

which expand to integer constant expressions that may be |
used as the argument to the exit function to return
unsuccessful or successful termination status, respectively,
to the host environment;

RAND_MAX

which expands to an integer constant expression, the value
of which is the maximum value returned by the rand function;
and
MB_CUR_MAX

which expands to a positive integer expression with type |
size_t whose value is the maximum number of bytes in a
multibyte character for the extended character set specified
by the current locale (category LC_CTYPE), and whose value
is never greater than MB_LEN_MAX.

--
Chuck F (cbfalconer at maineline dot net)
<http://cbfalconer.home.att.net>
Try the download section.

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

Jan 5 '08 #10
jacob navia <ja***@nospam.comwrites:
copx wrote:
>Are the macros min() and max() part of stdlib.h or not? (according
to the standard?)

I have the following problem: I defined my own min() / max() macros
because my compiler (MinGW) does NOT define them. When I tried to
compile my program with lcc-win32 the compiler complained about
macro redefinition, because min() and max() are defined in lcc's
stdlib.h..

So do these macros belong there or not?

They are not in the standard.
Note that the definition in stdlib.h is:

#ifndef max
#define max(a,b) (((a) (b)) ? (a) : (b))
#define min(a,b) (((a) < (b)) ? (a) : (b))
#endif

If you define those macros before including stdlib.h
yours will be taken. Besides, the compiler just
emits a warning.
I saw your later response in which you said that this is corrected in
the next release.

If the warning were the only effect, then this would not be a
conformance issue (though it would be a QoI issue). But consider the
following strictly conforming program:

#include <stdlib.h>
int max(int a, int b)
{
return a b ? a : b;
}
int main(void)
{
int n = max(0, 1);
return 0;
}

I don't have lcc-win, but my compiler (when I replace the "#include
<stdlib.h>" with your definition of max) chokes on the function
declaration; I presume lcc-win does as well.

If you wanted to provide min and max macros, I would *strongly*
recommend (a) calling them MIN and MAX, to emphasize that they're
macros and may evaluate their arguments more than once, and (b) define
them in an implementation-specific header, not in a language-defined
header.

There's probably existing code that depends on the current behavior --
but such code is already not portable to other implementations,
possibly without the author's knowledge.

In my opinion, an implementation should *never* define extra stuff in
the standard headers, even conditionally. (Yes, POSIX does this; I'm
not pleased about that either.)

--
Keith Thompson (The_Other_Keith) <ks***@mib.org>
[...]
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Jan 5 '08 #11
"copx" <co**@gazeta.plwrote:
# Are the macros min() and max() part of stdlib.h or not? (according to the
# standard?)
#
# I have the following problem: I defined my own min() / max() macros because
# my compiler (MinGW) does NOT define them. When I tried to compile my program
# with lcc-win32 the compiler complained about macro redefinition, because
# min() and max() are defined in lcc's stdlib.h..
#
# So do these macros belong there or not?

If the header is using #define, you can check with #if(n)def
and rid a previous definition without warning with #undef.
It's likely easier to adapt than try to change the library.

--
SM Ryan http://www.rawbw.com/~wyrmwif/
She broke your heart and inadvertently drove men to deviant lifestyles.
Jan 6 '08 #12

"Keith Thompson" <ks***@mib.orgschreef in bericht
news:87************@kvetch.smov.org...
In my opinion, an implementation should *never* define extra stuff in
the standard headers, even conditionally. (Yes, POSIX does this; I'm
not pleased about that either.)
I'm pretty sure that visual studio defined min and max in stdlib in previous
versions and that is probably why lccwin32 did this too. But I check
msvc2005 now and they apparently changed it to __min and __max. This would
be fine imo.

Jan 6 '08 #13
On Sun, 6 Jan 2008 10:32:29 +0100, "Serve Lau" <ni@hao.comwrote:
>
"Keith Thompson" <ks***@mib.orgschreef in bericht
news:87************@kvetch.smov.org...
>In my opinion, an implementation should *never* define extra stuff in
the standard headers, even conditionally. (Yes, POSIX does this; I'm
not pleased about that either.)

I'm pretty sure that visual studio defined min and max in stdlib in previous
versions and that is probably why lccwin32 did this too. But I check
msvc2005 now and they apparently changed it to __min and __max. This would
be fine imo.
It did used to define them, but Microsoft've fixed all that stuff
since about 2001. Plenty of other cranky stuff in there now though ;)

Jim
Jan 6 '08 #14
Serve Lau wrote:
>
I'm pretty sure that visual studio defined min and max in stdlib in
previous versions and that is probably why lccwin32 did this too.
Yes. Since then, Microsoft got more serious about standards.
I did not follow closely what they do now, until you mention it,
and I checked that they changed that, as you say.

--
jacob navia
jacob at jacob point remcomp point fr
logiciels/informatique
http://www.cs.virginia.edu/~lcc-win32
Jan 6 '08 #15
SM Ryan wrote:
"copx" <co**@gazeta.plwrote:
# Are the macros min() and max() part of stdlib.h or not? (according to the
# standard?)
[snip]
If the header is using #define, you can check with #if(n)def
and rid a previous definition without warning with #undef.
It's likely easier to adapt than try to change the library.
#include <stdio.h>
int max(int a, int b)
{
switch ( (a b) - (a < b) ) {
case -1: return puts("b is greater");
case 0: return puts("They're equal");
case 1: return puts("a is greater");
}
}
#include <stdlib.h>
int main(void)
{
if ( max(-47, -'/') < 0 )
return EXIT_FAILURE;
else
return EXIT_SUCCESS;
}
doesn't work if stdlib.h contains
#ifdef max
#undef max
#endif
#define max(a, b) (((a) (b)) ? (a) : (b))

--
Army1987 (Replace "NOSPAM" with "email")
Jan 6 '08 #16
Army1987 wrote:
SM Ryan wrote:
.... snip ...
>It's likely easier to adapt than try to change the library.

#include <stdio.h>
int max(int a, int b) {
switch ( (a b) - (a < b) ) {
case -1: return puts("b is greater");
case 0: return puts("They're equal");
case 1: return puts("a is greater");
}
}
.... snip ...
>
doesn't work if stdlib.h contains
anything at all.

Just plain 'doesn't work'. Lookup the return value of puts.

--
Chuck F (cbfalconer at maineline dot net)
<http://cbfalconer.home.att.net>
Try the download section.

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

Jan 6 '08 #17
Serve Lau wrote:
"Keith Thompson" <ks***@mib.orgschreef:
>In my opinion, an implementation should *never* define extra
stuff in the standard headers, even conditionally. (Yes, POSIX
does this; I'm not pleased about that either.)

I'm pretty sure that visual studio defined min and max in stdlib
in previous versions and that is probably why lccwin32 did this
too. But I check msvc2005 now and they apparently changed it to
__min and __max. This would be fine imo.
What Navia and/or Microsoft do has nothing whatsoever to do with
it. Simply read the C standard, or something reasonably close,
such as N869 or N1276.

--
Chuck F (cbfalconer at maineline dot net)
<http://cbfalconer.home.att.net>
Try the download section.

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

Jan 6 '08 #18
On Sun, 06 Jan 2008 11:28:32 -0500, CBFalconer wrote:
Serve Lau wrote:
>I'm pretty sure that visual studio defined min and max in stdlib in
previous versions and that is probably why lccwin32 did this too. But I
check msvc2005 now and they apparently changed it to __min and __max.
This would be fine imo.

What Navia and/or Microsoft do has nothing whatsoever to do with it.
What jacob navia and Microsoft do has everything to do with whether their
implementations conform to the C standard.
Jan 6 '08 #19
Harald van D?k wrote:
CBFalconer wrote:
>Serve Lau wrote:
>>I'm pretty sure that visual studio defined min and max in stdlib
in previous versions and that is probably why lccwin32 did this
too. But I check msvc2005 now and they apparently changed it to
__min and __max. This would be fine imo.

What Navia and/or Microsoft do has nothing whatsoever to do with it.

What jacob navia and Microsoft do has everything to do with whether
their implementations conform to the C standard.
We are in agreement. :-)

--
Chuck F (cbfalconer at maineline dot net)
<http://cbfalconer.home.att.net>
Try the download section.
--
Posted via a free Usenet account from http://www.teranews.com

Jan 6 '08 #20
CBFalconer <cb********@yahoo.comwrites:
Army1987 wrote:
>SM Ryan wrote:
... snip ...
>>It's likely easier to adapt than try to change the library.

#include <stdio.h>
int max(int a, int b) {
switch ( (a b) - (a < b) ) {
case -1: return puts("b is greater");
case 0: return puts("They're equal");
case 1: return puts("a is greater");
}
}
... snip ...
>>
doesn't work if stdlib.h contains
anything at all.

Just plain 'doesn't work'. Lookup the return value of puts.
It works fine. I think you missed the point of the example (now lost
since you snipped the key part).

--
Ben.
Jan 6 '08 #21

"CBFalconer" <cb********@yahoo.comschreef in bericht
news:47***************@yahoo.com...
>I'm pretty sure that visual studio defined min and max in stdlib
in previous versions and that is probably why lccwin32 did this
too. But I check msvc2005 now and they apparently changed it to
__min and __max. This would be fine imo.

What Navia and/or Microsoft do has nothing whatsoever to do with
it. Simply read the C standard, or something reasonably close,
such as N869 or N1276.
lccwin32 follows msvc as a windows development tool. If microsoft followed
the C standard back in 1998 when they introduced msvc6, lccwin32 wouldnt
have had min and max in stdlib either.
They should have followed the standard yes, but lccwin32 tries to have
software compatible with microsoft's tools above all (correct me if I'm
wrong) It isnt so strange for a windows compiler (lccwin32) to follow the
most used windows development tool for C in the world (msvc)

Jan 6 '08 #22
Serve Lau wrote:
>
"CBFalconer" <cb********@yahoo.comschreef in bericht
news:47***************@yahoo.com...
>>I'm pretty sure that visual studio defined min and max in stdlib
in previous versions and that is probably why lccwin32 did this
too. But I check msvc2005 now and they apparently changed it to
__min and __max. This would be fine imo.

What Navia and/or Microsoft do has nothing whatsoever to do with
it. Simply read the C standard, or something reasonably close,
such as N869 or N1276.

lccwin32 follows msvc as a windows development tool. If microsoft
followed the C standard back in 1998 when they introduced msvc6,
lccwin32 wouldnt have had min and max in stdlib either.
They should have followed the standard yes, but lccwin32 tries to have
software compatible with microsoft's tools above all (correct me if I'm
wrong) It isnt so strange for a windows compiler (lccwin32) to follow
the most used windows development tool for C in the world (msvc)
Well that is exactly the position I had. I tried to be compatible with
what Microsoft said.

I remember when I started writing those headers, and my frame of mind at
that time wasn't really a "language lawyer" mindset. I saw it in the
stdlib.h from msvc 4.1 (if I remember correctly) I said myself that
those are useful macros, I put them there, and there they stayed
until now. This user has seen this problem, and I thank him
for this bug report.

The "regulars" now will start turning this bug around for decades
(like Mr Heathfield that said that lcc-win did not have a conforming
mode because of this bug) but this is just BORING polemic guys.

You will have to find something more substantial to go on.

Anyway I will put the correction this evening so they will not
have so much time to go on...

:-)

--
jacob navia
jacob at jacob point remcomp point fr
logiciels/informatique
http://www.cs.virginia.edu/~lcc-win32
Jan 6 '08 #23
jacob navia wrote:
>
.... snip ...
>
Well that is exactly the position I had. I tried to be compatible
with what Microsoft said.

I remember when I started writing those headers, and my frame of
mind at that time wasn't really a "language lawyer" mindset. I saw
it in the stdlib.h from msvc 4.1 (if I remember correctly) I said
myself that those are useful macros, I put them there, and there
they stayed until now. This user has seen this problem, and I
thank him for this bug report.
You forgot to add that you disovered c.l.c and have become more
alert to what the standard says. That would have been much more
useful than what you did say.

--
Chuck F (cbfalconer at maineline dot net)
<http://cbfalconer.home.att.net>
Try the download section.

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

Jan 6 '08 #24
Ben Bacarisse wrote:
CBFalconer <cb********@yahoo.comwrites:
>Army1987 wrote:
>>SM Ryan wrote:
... snip ...
>>>It's likely easier to adapt than try to change the library.

#include <stdio.h>
int max(int a, int b) {
switch ( (a b) - (a < b) ) {
case -1: return puts("b is greater");
case 0: return puts("They're equal");
case 1: return puts("a is greater");
}
}
... snip ...
>>>
doesn't work if stdlib.h contains
anything at all.

Just plain 'doesn't work'. Lookup the return value of puts.

It works fine. I think you missed the point of the example (now
lost since you snipped the key part).
I don't think there is any argument that "max(a, b)" should return
one of the values a or b. However the above returns the return
from puts, which is (from N869):

7.19.7.10 The puts function

Synopsis
[#1]
#include <stdio.h>
int puts(const char *s);

Description

[#2] The puts function writes the string pointed to by s to
the stream pointed to by stdout, and appends a new-line
character to the output. The terminating null character is
not written.

Returns

[#3] The puts function returns EOF if a write error occurs;
otherwise it returns a nonnegative value.

--
Chuck F (cbfalconer at maineline dot net)
<http://cbfalconer.home.att.net>
Try the download section.
--
Posted via a free Usenet account from http://www.teranews.com

Jan 6 '08 #25
CBFalconer wrote, On 06/01/08 22:31:
Ben Bacarisse wrote:
>CBFalconer <cb********@yahoo.comwrites:
>>Army1987 wrote:
SM Ryan wrote:

... snip ...
It's likely easier to adapt than try to change the library.
#include <stdio.h>
int max(int a, int b) {
switch ( (a b) - (a < b) ) {
case -1: return puts("b is greater");
case 0: return puts("They're equal");
case 1: return puts("a is greater");
}
}
... snip ...
doesn't work if stdlib.h contains
anything at all.

Just plain 'doesn't work'. Lookup the return value of puts.
It works fine. I think you missed the point of the example (now
lost since you snipped the key part).

I don't think there is any argument that "max(a, b)" should return
one of the values a or b.
<snip irrelevant material>

Yes there is. The one Ben wrote should *not* return either a or b. The
entire point was that the behaviour would be different if stdlib.h
defines max.
--
Flash Gordon
Jan 7 '08 #26
CBFalconer <cb********@yahoo.comwrites:
Ben Bacarisse wrote:
>CBFalconer <cb********@yahoo.comwrites:
>>Army1987 wrote:
SM Ryan wrote:

... snip ...
It's likely easier to adapt than try to change the library.

#include <stdio.h>
int max(int a, int b) {
switch ( (a b) - (a < b) ) {
case -1: return puts("b is greater");
case 0: return puts("They're equal");
case 1: return puts("a is greater");
}
}
... snip ...

doesn't work if stdlib.h contains
anything at all.

Just plain 'doesn't work'. Lookup the return value of puts.

It works fine. I think you missed the point of the example (now
lost since you snipped the key part).

I don't think there is any argument that "max(a, b)" should return
one of the values a or b.
max(a, b) can return whatever that author wants it to. The example
was intended to show that it matters where and when macros are
defined.
from puts, which is (from N869):
Yes, I know what puts returns and I am sure Army1987 does too. The
same point could have been made using

int max(int a, int b) { return 42; }

or

int max(int a, int b) { puts("In my own max."); return a b ? a : b; }

--
Ben.
Jan 7 '08 #27
Flash Gordon <sp**@flash-gordon.me.ukwrites:
CBFalconer wrote, On 06/01/08 22:31:
>Ben Bacarisse wrote:
>>CBFalconer <cb********@yahoo.comwrites:
Army1987 wrote:
SM Ryan wrote:
>
... snip ...
>It's likely easier to adapt than try to change the library.
#include <stdio.h>
int max(int a, int b) {
switch ( (a b) - (a < b) ) {
case -1: return puts("b is greater");
case 0: return puts("They're equal");
case 1: return puts("a is greater");
}
}
... snip ...
doesn't work if stdlib.h contains
anything at all.

Just plain 'doesn't work'. Lookup the return value of puts.
It works fine. I think you missed the point of the example (now
lost since you snipped the key part).

I don't think there is any argument that "max(a, b)" should return
one of the values a or b.

<snip irrelevant material>

Yes there is. The one Ben wrote should *not* return either a or b. The
entire point was that the behaviour would be different if stdlib.h
defines max.
It was Army1987 not me. I just "stepped up" when the example was
misinterpreted.

--
Ben.
Jan 7 '08 #28
Ben Bacarisse wrote, On 07/01/08 00:59:
Flash Gordon <sp**@flash-gordon.me.ukwrites:
>CBFalconer wrote, On 06/01/08 22:31:
>>Ben Bacarisse wrote:
CBFalconer <cb********@yahoo.comwrites:
Army1987 wrote:
<snip>
>Yes there is. The one Ben wrote should *not* return either a or b. The
entire point was that the behaviour would be different if stdlib.h
defines max.

It was Army1987 not me. I just "stepped up" when the example was
misinterpreted.
Sorry, I didn't look far enough in to the quoting.
--
Flash Gordon
Jan 7 '08 #29
Ben Bacarisse wrote:
Flash Gordon <sp**@flash-gordon.me.ukwrites:
>CBFalconer wrote, On 06/01/08 22:31:
>>Ben Bacarisse wrote:
CBFalconer <cb********@yahoo.comwrites:
Army1987 wrote:
>SM Ryan wrote:
>>
... snip ...
>>It's likely easier to adapt than try to change the library.
>#include <stdio.h>
>int max(int a, int b) {
> switch ( (a b) - (a < b) ) {
>case -1: return puts("b is greater");
>case 0: return puts("They're equal");
>case 1: return puts("a is greater");
> }
>}
... snip ...
>doesn't work if stdlib.h contains
anything at all.
>
Just plain 'doesn't work'. Lookup the return value of puts.
It works fine. I think you missed the point of the example (now
lost since you snipped the key part).

I don't think there is any argument that "max(a, b)" should return
one of the values a or b.

<snip irrelevant material>

Yes there is. The one Ben wrote should *not* return either a or b.
The entire point was that the behaviour would be different if
stdlib.h defines max.

It was Army1987 not me. I just "stepped up" when the example was
misinterpreted.
One thing is sure - that I regret having pointed anything out about
it, The resultant furor is not worth the <paperit is written on.
:-)

--
Chuck F (cbfalconer at maineline dot net)
<http://cbfalconer.home.att.net>
Try the download section.

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

Jan 8 '08 #30
On Sun, 06 Jan 2008 11:28:32 -0500, CBFalconer <cb********@yahoo.com>
wrote:
<snip>
What Navia and/or Microsoft do has nothing whatsoever to do with
it. Simply read the C standard, or something reasonably close,
such as N869 or N1276.
N1256 .

- formerly david.thompson1 || achar(64) || worldnet.att.net
Jan 22 '08 #31
David Thompson wrote:
CBFalconer <cb********@yahoo.comwrote:
<snip>
>What Navia and/or Microsoft do has nothing whatsoever to do with
it. Simply read the C standard, or something reasonably close,
such as N869 or N1276.

N1256 .
Which doesn't have a greppable (etc.) text version, which N869
does. In fact you can get N869.txt compressed to about 85k bytes
from my site, as N869_txt.bz2.

--
[mail]: Chuck F (cbfalconer at maineline dot net)
[page]: <http://cbfalconer.home.att.net>
Try the download section.

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

Jan 22 '08 #32
CBFalconer wrote:
David Thompson wrote:
>CBFalconer <cb********@yahoo.comwrote:
<snip>
>>What Navia and/or Microsoft do has nothing whatsoever to do with
it. Simply read the C standard, or something reasonably close,
such as N869 or N1276.

N1256 .

Which doesn't have a greppable (etc.) text version, which N869
does. In fact you can get N869.txt compressed to about 85k bytes
from my site, as N869_txt.bz2.
You can convert n1256.pdf to a horrid, poorly formatted text file using
many easily available utilities which you can then "grep" to find the
relevant sections and go to them directly in the PDF file.

But personally I find that search has improved significantly on recent
versions of Adobe's PDF reader.

Jan 23 '08 #33
santosh wrote:
CBFalconer wrote:
>David Thompson wrote:
>>CBFalconer <cb********@yahoo.comwrote:
<snip>
What Navia and/or Microsoft do has nothing whatsoever to do with
it. Simply read the C standard, or something reasonably close,
such as N869 or N1276.

N1256 .

Which doesn't have a greppable (etc.) text version, which N869
does. In fact you can get N869.txt compressed to about 85k bytes
from my site, as N869_txt.bz2.

You can convert n1256.pdf to a horrid, poorly formatted text file
using many easily available utilities which you can then "grep" to
find the relevant sections and go to them directly in the PDF file.

But personally I find that search has improved significantly on
recent versions of Adobe's PDF reader.
But, surprise, I can avoid all that nonsense by simply using the
pre-formatted and relatively compact N869.txt. It can be read with
less, searched with grep, etc. etc. etc. I don't even need any
monstrous oversized .pdf readers to access it. I can even cut and
paste.

--
[mail]: Chuck F (cbfalconer at maineline dot net)
[page]: <http://cbfalconer.home.att.net>
Try the download section.

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

Jan 23 '08 #34
CBFalconer wrote:
But, surprise, I can avoid all that nonsense by simply using the
pre-formatted and relatively compact N869.txt. It can be read with
less, searched with grep, etc. etc. etc. I don't even need any
monstrous oversized .pdf readers to access it. I can even cut and
paste.
<ot>
You might find the not-monstrous-oversized ghostview a reasonable choice
for reading .pdf files. Not only is the footprint much smaller, but
files load much faster.
</ot>
Jan 23 '08 #35
Martin Ambuhl wrote:
CBFalconer wrote:
>But, surprise, I can avoid all that nonsense by simply using the
pre-formatted and relatively compact N869.txt. It can be read
with less, searched with grep, etc. etc. etc. I don't even need
any monstrous oversized .pdf readers to access it. I can even
cut and paste.

<ot>
You might find the not-monstrous-oversized ghostview a reasonable
choice for reading .pdf files. Not only is the footprint much
smaller, but files load much faster.
</ot>
Is is smaller than more.com (mine)? or list, or less. Can it be
searched with grep.

more.com Oct 18 1988 435
list.com Jan 22 2004 28211
less.exe Apr 5 2002 204800
grep.exe Aug 12 2007 84240

--
[mail]: Chuck F (cbfalconer at maineline dot net)
[page]: <http://cbfalconer.home.att.net>
Try the download section.

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

Jan 24 '08 #36
On Wed, 23 Jan 2008 19:03:15 -0600, CBFalconer wrote
(in article <47***************@yahoo.com>):
Martin Ambuhl wrote:
>CBFalconer wrote:
>>But, surprise, I can avoid all that nonsense by simply using the
pre-formatted and relatively compact N869.txt. It can be read
with less, searched with grep, etc. etc. etc. I don't even need
any monstrous oversized .pdf readers to access it. I can even
cut and paste.

<ot>
You might find the not-monstrous-oversized ghostview a reasonable
choice for reading .pdf files. Not only is the footprint much
smaller, but files load much faster.
</ot>

Is is smaller than more.com (mine)? or list, or less. Can it be
searched with grep.

more.com Oct 18 1988 435
list.com Jan 22 2004 28211
less.exe Apr 5 2002 204800
grep.exe Aug 12 2007 84240
Sure an old fart like yourself can afford a system by now with more
than 1MB of RAM. :P
--
Randy Howard (2reply remove FOOBAR)
"The power of accurate observation is called cynicism by those
who have not got it." - George Bernard Shaw

Jan 24 '08 #37
CBFalconer wrote:
Martin Ambuhl wrote:
>CBFalconer wrote:
>>But, surprise, I can avoid all that nonsense by simply using the
pre-formatted and relatively compact N869.txt. It can be read
with less, searched with grep, etc. etc. etc. I don't even need
any monstrous oversized .pdf readers to access it. I can even
cut and paste.
<ot>
You might find the not-monstrous-oversized ghostview a reasonable
choice for reading .pdf files. Not only is the footprint much
smaller, but files load much faster.
</ot>

Is is smaller than more.com (mine)? or list, or less. Can it be
searched with grep.
I never made any statement to which that is an appropriate response.
Jan 24 '08 #38
Martin Ambuhl wrote:
CBFalconer wrote:
Martin Ambuhl wrote:
.... snip ...
>>
>>You might find the not-monstrous-oversized ghostview a reasonable
choice for reading .pdf files. Not only is the footprint much
smaller, but files load much faster.
</ot>

Is is smaller than more.com (mine)? or list, or less. Can it be
searched with grep.

I never made any statement to which that is an appropriate response.
"not-monstrous-oversized" ?

--
[mail]: Chuck F (cbfalconer at maineline dot net)
[page]: <http://cbfalconer.home.att.net>
Try the download section.

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

Jan 24 '08 #39

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

Similar topics

5
by: Steve | last post by:
can someone tell me how qsort function in <stdlib.h> is used (qsort(..........))? the function has a buffer, two void * parameters and the a pointer to a compare function. Thanks.
11
by: PÃ¥l Eilertsen | last post by:
Hi, I have recently installed Visual Studio .Net 2003 and am trying to compile and run a simple windows form app (used the VS wizard). When trying to run I get an error message telling me:...
2
by: Jim Bish | last post by:
I am porting some code form vs2003 to vs2005 - it is unmanaged CPP. The solution consists of several library projects and a console project. The library projects all build fine but when I get to...
4
by: Subra | last post by:
Hi, in a cpp file we are including <cstdliband indirectly including <stdlib.h>. But the definition for "strtoll" is not appearing in the .ii file generated using the -E option to gcc. ...
21
by: Anton Dec | last post by:
Just curious about this... malloc is defined in stdlib.h, right? But if I write a program without #include<stdlib.hand use malloc, it still works as expected. Why is this? Is malloc...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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...
1
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
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

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.