4
votes
3answers
146 views

Is switch case a loop or a conditional construct?

I was asked this question in an interview. I replied that it was a conditional construct because it executes once, unlike a loop which has the capability to execute multiple times. There is no loop ...
4
votes
1answer
143 views

Flowchart existing C Code

I have inherited some old Arm 7 C code that I need to maintain and enhance. Rather that hand walk through all the lines of code, I was hoping that I could use a tool to reverse engineer it and ...
1
vote
0answers
67 views

Combining Docbook and Doxygen documentation types.

I'm working on new documentation for our software library and I'm wondering how I can combine a general documentation which I think should be written in DocBook together with a Doxygen based API ...
2
votes
1answer
41 views

Doxygen does not throw warnings with C

I have been using Doxygen for a long time (mostly with Java), however I've noticed that the warnings it throws when items are not documented, or have incorrect @param are not outputting when you ...
3
votes
0answers
52 views

Using lint comments with doxygen

for documentation we usually have to create an additional document describing what we did when any lint messages were disabled in code (e.g. /* lint --e228). It would make it much easier to use it ...
3
votes
1answer
216 views

Where can I find the latest C specification? [duplicate]

Possible Duplicate: Where do I find the current C or C++ standard documents? My problem is that I'm missing good features and relying in misbehaviors. I see in a lot of answers here on SO ...
0
votes
0answers
55 views

automatically predefine all macros in Doxygen

I want to run doxygen on code that makes heavy use of macros for deciding which modules to include. Of course I want to generate the documentation for all modules, so I have to set all corresponding ...
0
votes
1answer
59 views

GTK+: what does the gtk_ui_manager_add_ui_from_resource function do?

I see the function gtk_ui_manager_add_ui_from_resource used in several places, but can't find any documentation for it in GTK+ 3 Reference Manual. What does this function do? I guess it should be ...
4
votes
3answers
130 views

What is the difference between malloc and malloc(3)?

While reading a hacker article on the jemalloc memory manager, the hacker keeps referring to malloc(3), not malloc. I wondered why. Does he do so because it refers to a specific linux malloc ...
0
votes
2answers
133 views

Comment generator for C in C

I am looking for a (Stand-alone) program that can generate C documentation in C aswell. Take this program as example: http://www.feinsoftware.com/CommentMakerPro.php I would have want to use this, ...
0
votes
0answers
40 views

documentation from sources

I'm working on C open-source project for Windows. Is there any alternative to doxygen in order to generate/manage documentation for its win32api-like C interface, with following specifics of the ...
0
votes
4answers
169 views

How do I get a long documentation string into a c/c++ program?

I have a small library with some documentation that should be available at runtime, but the MS Visual Studio C++ compiller only allows string literals with length up to 2,048 bytes, Is there a simple ...
0
votes
1answer
103 views

Inconsistent MSDN documentation for InterlockedExchange() type functions/intrinsics?

First, we have InterlockedExchange64(); http://msdn.microsoft.com/en-us/library/windows/desktop/ms683593%28v=vs.85%29.aspx LONGLONG __cdecl InterlockedExchange64( __inout LONGLONG volatile *Target, ...
0
votes
3answers
164 views

Doc string facility in C++

Languages like Python, MATLAB, E-Lisp have this nice facility for doc-strings. With this feature using just a few keystrokes in the terminal, you can fetch the documentations of the functions / ...
0
votes
1answer
61 views

What exactly does mpn_copyi do in the GMP C library?

I can see from the GMP official documentation: void mpn_copyi (mp_limb_t *rp, const mp_limb_t *s1p, mp_size_t n) Copy from {s1p, n} to {rp, n}, increasingly. void mpn_copyd ...
5
votes
1answer
475 views

How do I use CCode attributes in Vala?

I am trying to use a C macro from Vala. It seems to me that this should be possible with the CCode directive but I fail to find any meaningful documentation how to use it. There is a brief section ...
3
votes
2answers
2k views

Change the Theme of Doxygen?

I don't really think the Doxygen HTML theme for documenting C code is good for documenting functions and procedures (though it is awesome for documenting OOP if using C++). So what I'm asking is can ...
0
votes
2answers
246 views

MagickWand for C: Lack of documentation means more errors for me

I am writing an improved Perlin noise (I don't really understand simplex noise) terrain generator for C, and I am practically finished with the alpha build. However, there is one thing holding me ...
2
votes
1answer
417 views

Handling two different functions with the same name in Doxygen

I have a C project which contains two functions with the same name, but each is within a different group/module (@defgroup). These functions each compile into a different binary, but I need the ...
3
votes
8answers
172 views

Where can I find a C manual describing all C methods?

I'm currently translating C code to PHP. And I tumble upon some C method that I just don't know what they are used for. I've looked for the C reference manual ( ...
5
votes
4answers
625 views

How to write documentation comments in ANSI C?

I can't find how to write comments in C. I mean I know about // and /* */, what I mean is where can I find good practices? Like if I have a function, how do I write the @param variable is the value ...
2
votes
2answers
763 views

Is there a source code documentation generator for C / C++ like docco?

I would like the get a similar output on documented c++ implementation files (not header files) like the output generated with docco. Is there such a tool?
1
vote
2answers
190 views

Command Prompt Help and Documentation for C and C++ Language

My question is pretty straight forward: Is there any language documentation and help in command prompt for C and C++ language? Well, I've come from other languages like Python and Ruby where them ...
0
votes
3answers
340 views

Where is documentation for libattr?

I'm trying to use libattr in a c program, and cannot find any information on how to use it. [user~/src/libattr_testing]$ find / -type f 2>/dev/null | grep libattr /lib/libattr.so.1.1.0 ...
3
votes
2answers
436 views

is there any CHM/html reference for unix/linux C functions (like in man)?

i need such reference preferable in CHM format or any other fast-access format. I need all *nix functions + pthread + all sockets (network) functions. Searching the internet i did not find any, so ...
2
votes
4answers
238 views

About C documentation

Coming from Java environment, I feel I got spoiled a lot when it comes to documentation. In C, using Eclipse, mouseover putchar() shows: __CRT_INLINE int __cdecl __MINGW_NOTHROW putchar(int __c) { ...
-1
votes
2answers
90 views

Is there a parsing program that can verify my C code is documented clearly with proper comments?

Is there any parsing program in C language that checks any code whether it is documented clearly with proper comments or not?
1
vote
2answers
110 views

Formatting C code for a document

I am working on a book containing a number of C examples. I am looking for a way I can spit the code through a processor that will give it to me with alternating grey/white lines with line numbers ...
1
vote
3answers
157 views

Where can I find the manual pages of libmysqlclient?

Hi I am writing C code under linux to access database and work on the tables present it. But I could not find the documentation/manual pages for it in the synaptic package manager. So how can I ...
0
votes
2answers
2k views

How to download msdn library for C++

I want to download all the library documentation about ,msvc++ from MSDN. I don't have access to internet for more than 12 hours in a day . It's creating a lot of problem for me. Can anybody give me ...
5
votes
4answers
992 views

What does printf (_(“hello, world\n”)) mean?

What's the role of the _("hello, world\n") argument to printf/puts etc ? I often find it while reading GNU source code.
11
votes
7answers
2k views

Is there something like the official C documentation?

I'm looking for the documentation of all the syntax and built-in functions in C, but I can't find any site online which seems like an ultimate official source of standard C knowledge. Apart from the ...
1
vote
2answers
666 views

Throwing an exception instead of error from a PHP extension

Another co-worker and I have been heavily modifying the PHP Zookeeper extension but the one thing really bothering me is the reliance on PHP error's vs Exceptions. The original source is here: ...
2
votes
4answers
124 views

Array index vs. “user documentation” terminology?

I have an "array" of bytes that is referenced in some high-level client/developer documentation (which does not contain any programming language or environment specific information). In this document, ...
19
votes
11answers
872 views

Where to document functions in C?

I have a C program with multiple files, so I have, for example, stuff.c which implements a few functions, and stuff.h with the function prototypes. How should I go about documenting the functions in ...
8
votes
2answers
10k views

A doxygen eclipse plugIn with automatic code completion?

I'am looking for an eclipse-plugin for doxygen code documentation. I have found the eclox-plugIn ( http://home.gna.org/eclox/ ). I would like find out, how can it automatically generate a "empty" ...
2
votes
1answer
1k views

What tools might I use for generating documentation for an Xcode project?

I am wondering which tool can be used in Xcode to generate the documentation for an iPhone project, so written in objective-C and C mostly, but also helping designing the code. The documents I'd like ...
0
votes
0answers
112 views

Internal documentation format of dns_sd.h

I'm programming with Apple's Bonjour SDK for Windows, that contains dns_sd.h. This file is full of documentation that seems to follow a fixed format. Some excerpts follow. This is apparently Emacs ...
10
votes
3answers
368 views

What does the 2 stand for in fork(2)?

What does the number in parentheses after C function name mean in manpages ? For instance, I see fork(2) and wonder what the 2 means... Also, I read things like pthread_atfork(3C), so what does the ...
1
vote
1answer
676 views

How to exclude a function from a call graph in Doxygen?

I have debugging functions that are called in just about every function of a large program. They are conditionally turned on by a defined macro variable. I don't want these showing up in call graphs, ...
1
vote
3answers
863 views

WYSIWYG in Doxygen

I'm working on a fairly large project written in C. The idea was to build a library of modular blocks that can be reused across several platforms. Each module is associated with a word document in ...
0
votes
1answer
781 views

How to documenting global dependencies for functions?

I've got some C code from a 3rd party vendor (for an embedded platform) that uses global variables (for speed & space optimizations). I'm documenting the code, converting to Doxygen format. ...
0
votes
1answer
942 views

How to represent static variable declaration in flowchart documentation?

I'm in the process of documenting some firmware but I'm unsure what the standard is (if there is one) for representing static variable declaration in flowcharts
18
votes
5answers
13k views

ffmpeg C API documentation/tutorial [closed]

I am trying to find documentation to use the ffmpeg C API. It seems that only command line documentation is available. Is there any good documentation/tutorials/links available?
12
votes
4answers
2k views

Commenting C code, header and source files

I'm looking for a "best practice" to document my C code. Like in any project I have some header files ".h" and the respective source file ".c" In the header file what kind of comment you put in? And ...
18
votes
9answers
5k views

Doxygen, too heavy to maintain?

I am currently starting using doxygen to document my source code. I have notice that the syntax is very heavy, every time I modify the source code, I also need to change the comment and I really have ...
2
votes
3answers
814 views

Tool to Scan Code Comments, and convert to Standard Format

I'm working on a C project that has seen many different authors and many different documentation styles. I'm a big fan of doxygen and other documentation generations tools, and I would like to ...
4
votes
4answers
611 views

C documentation-generator tool

Is there any free software that can take C source files and generating documentation using them?
0
votes
2answers
226 views

Objective-c Runtime Interface Documentation

Are the runtime interfaces(such as __objc_exec_class()) for Objective-C programs specified/documented anywhere, or they are (compiler-)implementation defined? The closest thing to a reference I have ...
5
votes
6answers
380 views

Is there a javadoc-like program for C/C++?

Some people suggested Doxygen, some ccdoc, which should be more similar to javadoc but is less supported. What's your opinion?

1 2