[comp.lang.c++] C++ source file names

shapiro@inria.UUCP (Marc Shapiro) (12/18/87)

There is a proposal (by the FSF people) to use the .C (capital C) extension
to name C++ source files, instead of .c.  This should make a few things more
efficient (e.g. choosing editor modes) and would allow to mix C and C++
sources in a non-confusing way.

I think the idea is perfectly reasonable, if ATT adopts it.  The distributed
CC could be prepared to accept either .c or .C in order not to break any
exisiting programs, but future programs should only use the .C extension.

What do you think?

leech@polk.cs.unc.edu (Jonathan Leech) (12/20/87)

Expires:

Sender:

Followup-To:

Distribution:


In article <593@inria.UUCP> shapiro@inria.UUCP (Marc Shapiro) writes:
>
>There is a proposal (by the FSF people) to use the .C (capital C) extension
>to name C++ source files, instead of .c.
>...
>The distributed
>CC could be prepared to accept either .c or .C in order not to break any
>exisiting programs, but future programs should only use the .C extension.

    The 1.20 version of CC already does this. Admittedly the
`basename $A .[cC]` syntax does not work correctly on many systems,
but this is easy to correct.

>What do you think?

    I think it's fine as long as C++ compilers always accept both
extensions. Otherwise, someone trying to move code from a
case-insensitive system like VMS or MS-DOS will lose.

    On a tangent, I was surprised that Michael Tiemann posted the GNU
C++ announcement to comp.emacs but not here (look it up yourself,
don't ask me for a copy). Has anyone tried using it for something
substantial such as compiling cfront?
--
    Jon Leech (leech@cs.unc.edu)    __@/
    ``Thus Mathematics helps / our brains and hands and feet
      and can make / a race of supermen out of us.''
	- The Education of T. C. Mits

day@grand.UUCP (Dave Yost) (12/21/87)

In article <593@inria.UUCP> shapiro@inria.UUCP (Marc Shapiro) writes:
>
>There is a proposal (by the FSF people) to use the .C (capital C) extension
>to name C++ source files, instead of .c.  This should make a few things more
>efficient (e.g. choosing editor modes) and would allow to mix C and C++
>sources in a non-confusing way.
>
>I think the idea is perfectly reasonable, if ATT adopts it.  The distributed
>CC could be prepared to accept either .c or .C in order not to break any
>exisiting programs, but future programs should only use the .C extension.
>
>What do you think?

Since one of the primary goals of C++ is to become a
serious, widely-used language, it seems to me that choosing
a naming convention that will not work on most computers in
the world is not a good idea.  Something that will work on
systems without filename case sensitivity would be more
appropriate.

The Glockenspiel people use ".cxx" as the C++ suffix in
their cfront-derived product, which has been ported to at
least 20 environments, including DOS and OS/2, and probably
represents the largest installed base of C++ compilers.
Think of the "xx" as "++" rotated 45 degrees.

Existing UNIX C compilers will do the appropriate thing with
files ending in .o, .s, and .c.  The Glockenspiel compiler
driver respects that convention and extends it by treating
.cxx files as C++.  I think this makes much more sense than
a compiler driver that treats both .c and .cxx files as C++
source.

I hope the that either the .cxx convention, or .cc, or
something new and creative will be adopted by the next
release of cfront, and that .c files will go on being C
source files.

Now is the time to do this right, even though it may annoy
present C++ users.  Their annoyance avoided now will be
dwarfed by the pain of 50 times more future users.  (As in
most cases in the sorry history of computers.)

 --dave yost

P.S.  Who are the FSF people?

poetry@gpu.utcs.toronto.edu (David Goodman) (12/21/87)

In article <396@grand.UUCP> day@grand.UUCP (Dave Yost) writes:
>
>Now is the time to do this right, even though it may annoy
>present C++ users.  Their annoyance avoided now will be
>dwarfed by the pain of 50 times more future users.  (As in
>most cases in the sorry history of computers.)
>

Bravo!  Well argued.  Look at what's happening to C.  After ten or so
years, ANSI and the lunatic fringe are practically changing the language.


>P.S.  Who are the FSF people?

I wonder, too.


						i.e.

seindal@diku.UUCP (Rene' Seindal) (12/22/87)

In article <593@inria.UUCP> shapiro@inria.UUCP (Marc Shapiro) writes:

>There is a proposal (by the FSF people) to use the .C (capital C) extension
>to name C++ source files, instead of .c.  This should make a few things more
>efficient (e.g. choosing editor modes) and would allow to mix C and C++
>sources in a non-confusing way.

>I think the idea is perfectly reasonable, if ATT adopts it.  The distributed
>CC could be prepared to accept either .c or .C in order not to break any
>exisiting programs, but future programs should only use the .C extension.

>What do you think?

The CC script for version 1.2.1 of the compiler accepts both .c and .C

Rene' Seindal (seindal@diku.UUCP).

lvc@tut.cis.ohio-state.edu (Lawrence V. Cipriani) (12/22/87)

In article <593@inria.UUCP>, shapiro@inria.UUCP (Marc Shapiro) writes:
> 
> There is a proposal (by the FSF people) to use the .C (capital C) extension
> to name C++ source files, instead of .c.  This should make a few things more
> efficient (e.g. choosing editor modes) and would allow to mix C and C++
> sources in a non-confusing way.
> 
> I think the idea is perfectly reasonable, if ATT adopts it.  The distributed
> CC could be prepared to accept either .c or .C in order not to break any
> exisiting programs, but future programs should only use the .C extension.
> 
> What do you think?

I think .c was a mistake.  It's confusing to programs like make, and
programmers too.

The suffix .C is fine.  My feeling about .cxx is that it is too long,
one character should suffice.  Though, if monocase causes problems
then .cxx is fine.

I also dislike the name CC; how many sites do you think have some
front-end script to /bin/cc in a program called /bin/CC? I know we did.

-- 
	Larry Cipriani AT&T Network Systems at
	cbosgd!osu-cis!tut!lvc Ohio State University

fischer@iesd.uucp (Lars P. Fischer) (12/22/87)

In article <593@inria.UUCP> shapiro@inria.UUCP (Marc Shapiro) writes:
>
>There is a proposal (by the FSF people) to use the .C (capital C) extension
>to name C++ source files, instead of .c. 
>...
>I think the idea is perfectly reasonable, if ATT adopts it.

Release 1.2 of the CC translator from AT&T wil accept ".C" as well as ".c".

-- 

Lars Fischer, fischer@iesd.uucp, {...}!mcvax!diku!iesd!fischer
Department of Mathematics and Computer Science
Aalborg University Centre
DENMARK

Politics is no exact science -- Otto von Bismarck

dave@westmark.UUCP (Dave Levenson) (12/22/87)

In article <593@inria.UUCP>, shapiro@inria.UUCP (Marc Shapiro) writes:
> 
> There is a proposal (by the FSF people) to use the .C (capital C) extension
> to name C++ source files, instead of .c.  This should make a few things more
> efficient (e.g. choosing editor modes) and would allow to mix C and C++
> sources in a non-confusing way.

> What do you think?


I think this would make a number of things less efficient in
operating systems like MS-DOS where filenames are case-insensitive.
Why not give c++ source files an extension that is always
discernable from old .c files?


-- 
Dave Levenson
Westmark, Inc.		A node for news.
Warren, NJ USA
{rutgers | clyde | mtune | ihnp4}!westmark!dave

pardo@uw-june.UUCP (David Keppel) (12/23/87)

How about .cc or .CC this is distinct from .c on even MS-DOS systems.

	;-D on  (Call by Name)  Pardo

mkhaw@teknowledge-vaxc.ARPA (Mike Khaw) (12/23/87)

> There is a proposal (by the FSF people) to use the .C (capital C) extension
> to name C++ source files, instead of .c.  This should make a few things more
...
> What do you think?


Yecchh! What happens to case-insensitive systems like VMS and Apollo/Aegis?
(Not that I'm fond of either).

Mike Khaw
-- 
internet:  mkhaw@teknowledge-vaxc.arpa
usenet:	   {uunet|sun|ucbvax|decwrl|uw-beaver}!mkhaw%teknowledge-vaxc.arpa
USnail:	   Teknowledge Inc, 1850 Embarcadero Rd, POB 10119, Palo Alto, CA 94303

reggie@pdn.UUCP (George W. Leach) (12/23/87)

In article <3880@uw-june.UUCP> pardo@uw-june.UUCP (David Keppel) writes:

>How about .cc or .CC this is distinct from .c on even MS-DOS systems.

   The .cc extension may be taken by Concurrent C.  I'm not sure about this
due to the fact that I have only seen the paper by N.H. Gehani and W.D. Roome.
Also, keep in mind that a Concurrent C++ name extension must also be reserved
for future use if extensions are being given out at this time.


   Being C++ is an extension to C (and therefore so should be Concurrent C
and any merge of the two as well) any C program should be acceptable to CC.
I would imagine that any C program is acceptable by the Concurrent C compiler
and that in the future any C or C++ program should be acceptable to the
Concurrent C++ compiler.  *NOTE* this is all conjecture, being I have no
access to Concurrent C.


   So why do we need different extensions for C++, Concurrent C or any other
extension to C?  The only difficulty I would see is that the programmer
would be less inclined to run a C++ program through the C compiler.



-- 
George W. Leach					Paradyne Corporation
{gatech,rutgers,attmail}!codas!pdn!reggie	Mail stop LF-207
Phone: (813) 530-2376				P.O. Box 2826
						Largo, FL  34649-2826

jima@hplsla.HP.COM ( Jim Adcock) (12/25/87)

I guess I would like to see the C++ community lobby in the direction
that C++ *IS* C, "today's" C, and that if you want absolute backwards 
compatibility to the slight differences to "old" dialects of C, then 
you invoke "today's" C compiler with a compile time option in order 
to make it backwardly compatible with the "old" dialects of C.

Using this arguement, the .c extension IS correct.

Given the choice of which language is going to become "today's" standard
dialect of C, either C++ or ANSI-C, I would certainly hope that C++
becomes the standard.

I think it would behoove the C++ community to try to move themselves 
and the C community at large in this direction.

In any case, the half dozen companies presently coming out with C++
compilers need to get together and hash out precisely what needs to
be done in this area.  Having each compiler that comes out expect
a different suffix has GOT to be the ultimate in WACKO-ism!

Let's get C++ standardized, and sell the rest of the world on its 
benefits, rather than fighting among ourselves on little "don't-care"
details !!!

- Jim Adcock HP LSID -