| View previous topic :: View next topic |
| Author |
Message |
leilei Guest
|
Posted: Wed Nov 19, 2008 2:34 pm Post subject: Want some tools. |
|
|
Hi,
I want to know is there any free Coding Standard Enforcement (CSE)
tools for C/C++?
Please give me a address. |
|
| |
|
Back to top |
Ed Prochak Guest
|
Posted: Wed Nov 19, 2008 3:09 pm Post subject: Re: Want some tools. |
|
|
On Nov 19, 9:34燼m, leilei <huxuelei...@gmail.com> wrote:
| Quote: | Hi,
I want to know is there any free Coding Standard Enforcement (CSE)
tools for C/C++?
Please give me a address.
|
What kind of standard are you really looking for?
Style of code? Check for cb (C beautifier) and similar programs. Lots
of editors/IDEs have this feature too.
Otherwise I cannot understand what you want.
What did Google turn up? |
|
| |
|
Back to top |
leilei Guest
|
Posted: Thu Nov 20, 2008 7:35 am Post subject: Re: Want some tools. |
|
|
On 11月19日, 下午11时09分, Ed Prochak <edproc...@gmail.com> wrote:
| Quote: | On Nov 19, 9:34 am, leilei <huxuelei...@gmail.com> wrote:
Hi,
I want to know is there any free Coding Standard Enforcement (CSE)
tools for C/C++?
Please give me a address.
What kind of standard are you really looking for?
Style of code? Check for cb (C beautifier) and similar programs. Lots
of editors/IDEs have this feature too.
Otherwise I cannot understand what you want.
What did Google turn up?
|
I searched the Coding Standard Enforcement (CSE) tools on Google, but
I do not find any one is free. |
|
| |
|
Back to top |
Chris H Guest
|
Posted: Thu Nov 20, 2008 9:07 am Post subject: Re: Want some tools. |
|
|
In message
<a342a002-3a63-42a9-a1f5-a5ca806c417c@s9g2000prm.googlegroups.com>,
leilei <huxuelei630@gmail.com> writes
| Quote: | On 11月19日, 下午11时09分, Ed Prochak <edproc...@gmail.com> wrote:
On Nov 19, 9:34 am, leilei <huxuelei...@gmail.com> wrote:
Hi,
I want to know is there any free Coding Standard Enforcement (CSE)
tools for C/C++?
Please give me a address.
What kind of standard are you really looking for?
Style of code? Check for cb (C beautifier) and similar programs. Lots
of editors/IDEs have this feature too.
Otherwise I cannot understand what you want.
What did Google turn up?
I searched the Coding Standard Enforcement (CSE) tools on Google, but
I do not find any one is free.
|
Why do you need them "free"?
Is this for a hobby project or a commercial one?
Search on "C beautifier"
--
\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
\/\/\/\/\ Chris Hills Staffs England /\/\/\/\/
\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/ |
|
| |
|
Back to top |
CBFalconer Guest
|
Posted: Fri Nov 21, 2008 2:28 am Post subject: Re: Want some tools. |
|
|
leilei wrote:
| Quote: |
I want to know is there any free Coding Standard Enforcement (CSE)
tools for C/C++? Please give me a address.
|
Look for "indent". Available free from GNU. For C, not C++.
--
[mail]: Chuck F (cbfalconer at maineline dot net)
[page]: <http://cbfalconer.home.att.net>
Try the download section. |
|
| |
|
Back to top |
Grant Edwards Guest
|
Posted: Fri Nov 21, 2008 2:31 am Post subject: Re: Want some tools. |
|
|
On 2008-11-20, CBFalconer <cbfalconer@yahoo.com> wrote:
| Quote: | leilei wrote:
I want to know is there any free Coding Standard Enforcement (CSE)
tools for C/C++? Please give me a address.
Look for "indent". Available free from GNU. For C, not C++.
|
astyle is also pretty good.
--
Grant Edwards grante Yow! I want a VEGETARIAN
at BURRITO to go ... with
visi.com EXTRA MSG!! |
|
| |
|
Back to top |
Tauno Voipio Guest
|
Posted: Fri Nov 21, 2008 2:53 am Post subject: Re: Want some tools. |
|
|
Chris H wrote:
| Quote: | In message
a342a002-3a63-42a9-a1f5-a5ca806c417c@s9g2000prm.googlegroups.com>,
leilei <huxuelei630@gmail.com> writes
On 11月19日, 下午11时09分, Ed Prochak <edproc...@gmail.com> wrote:
On Nov 19, 9:34 am, leilei <huxuelei...@gmail.com> wrote:
Hi,
I want to know is there any free Coding Standard Enforcement (CSE)
tools for C/C++?
Please give me a address.
What kind of standard are you really looking for?
Style of code? Check for cb (C beautifier) and similar programs. Lots
of editors/IDEs have this feature too.
Otherwise I cannot understand what you want.
What did Google turn up?
I searched the Coding Standard Enforcement (CSE) tools on Google, but
I do not find any one is free.
Why do you need them "free"?
Is this for a hobby project or a commercial one?
Search on "C beautifier"
|
The first question is if the OP wants a tool for
cleaning up the code, or a tool for nagging about
badly written code.
cb does not nag.
--
Tauno Voipio
tauno voipio (at) iki fi |
|
| |
|
Back to top |
Grant Edwards Guest
|
Posted: Fri Nov 21, 2008 3:04 am Post subject: Re: Want some tools. |
|
|
On 2008-11-20, Tauno Voipio <tauno.voipio@INVALIDiki.fi> wrote:
| Quote: | Search on "C beautifier"
The first question is if the OP wants a tool for cleaning up
the code, or a tool for nagging about badly written code.
cb does not nag.
|
If you want "nagging", then running the file through cb and
diff'ing the "beautified" version with the original file is
easy enough.
--
Grant Edwards grante Yow! I'm a nuclear
at submarine under the
visi.com polar ice cap and I need
a Kleenex! |
|
| |
|
Back to top |
David Brown Guest
|
Posted: Fri Nov 21, 2008 4:04 am Post subject: Re: Want some tools. |
|
|
Grant Edwards wrote:
| Quote: | On 2008-11-20, Tauno Voipio <tauno.voipio@INVALIDiki.fi> wrote:
Search on "C beautifier"
The first question is if the OP wants a tool for cleaning up
the code, or a tool for nagging about badly written code.
cb does not nag.
If you want "nagging", then running the file through cb and
diff'ing the "beautified" version with the original file is
easy enough.
|
That will only check that your code is laid out sensibly (consistent
indentation, brackets, etc.). While that's a worthy goal if the OP is
incapable of writing well laid out code in the first place, it won't do
any coding standards checking. |
|
| |
|
Back to top |
Chris H Guest
|
Posted: Fri Nov 21, 2008 9:17 am Post subject: Re: Want some tools. |
|
|
In message <n7kVk.318$jw1.276@read4.inet.fi>, Tauno Voipio
<tauno.voipio@INVALIDiki.fi> writes
| Quote: | Chris H wrote:
In message
a342a002-3a63-42a9-a1f5-a5ca806c417c@s9g2000prm.googlegroups.com>,
leilei <huxuelei630@gmail.com> writes
On 11月19日, 下午11时09分, Ed Prochak <edproc...@gmail.com> wrote:
On Nov 19, 9:34 am, leilei <huxuelei...@gmail.com> wrote:
Hi,
I want to know is there any free Coding Standard Enforcement (CSE)
tools for C/C++?
Please give me a address.
What kind of standard are you really looking for?
Style of code? Check for cb (C beautifier) and similar programs. Lots
of editors/IDEs have this feature too.
Otherwise I cannot understand what you want.
What did Google turn up?
I searched the Coding Standard Enforcement (CSE) tools on Google, but
I do not find any one is free.
Why do you need them "free"?
Is this for a hobby project or a commercial one?
Search on "C beautifier"
The first question is if the OP wants a tool for
cleaning up the code, or a tool for nagging about
badly written code.
|
Lint
--
\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
\/\/\/\/\ Chris Hills Staffs England /\/\/\/\/
\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/ |
|
| |
|
Back to top |
|