Tagged Questions
0
votes
0answers
28 views
C code formatter/indenter in JavaScript [closed]
I'm looking for a JavaScript library that provides a function:
format_c_code(code);
it should take a string with C code, and return a formatted version of it.
e.g.
format_c_code('int main(){int ...
3
votes
1answer
58 views
How to apply indent correctly on a line containing BEGIN_C_DECLS macro?
I'm using indent utility to apply code styling on my code. I have problem with the following:
#ifdef __cplusplus
#define BEGIN_C_DECLS extern "C" {
#define END_C_DECLS }
#else /* !__cplusplus */
...
2
votes
1answer
125 views
Why indent breaks source code formatting?
I am using indent to format C source code under Ubuntu this way
indent -linux -l120 -i4 -nut filename
Somehow several files have broken formatting after indenter. The result looks like this
...
0
votes
0answers
14 views
Optional 'psl' (procnames-start-lines) formatting when using 'indent'
I was hoping there would be a way to use the indent -psl option, but have it only take effect when breaking long lines.
For example, I would like this procedure to be on one line:
void ...
2
votes
1answer
102 views
Make vim indent C preprocessor directives the same as other statements
General info
(Note: Please read this all the way through, because I spent a bit of time organizing it, making sure I addressed each individual problem I'm having and why one proposed solution doesn't ...
1
vote
1answer
146 views
Visual Studio 2010 doesn't indent C code
Does anyone knows why Visual Studio 2010 does not indent C code and how may I make it indent automatically, i.e. while I type (I already know the keyboard shortcuts) the C code?
6
votes
2answers
379 views
How do I make emacs treat #ifdef and #endif like '{' and '}'?
I'd like emacs to treat "#ifdef" exactly like "{" and "#endif" like "}" in relation to indentation. Like so:
#ifdef __linux__
#include <sys/socket.h>
#endif
int func(void)
{
int foo = ...
3
votes
1answer
214 views
Emacs indent an extra level for every continued line
How do you tell emacs to indent the current continued line (e.g. after a dot or indirection operator) one level deeper than the previous one? Arguments about which one is prettier are irrelevant here ...
0
votes
4answers
82 views
Is there a program that automatically styles C files?
I think the title is self-explanatory. Would be handy for large files with lots of style violations. Thanks guys :)
