Search Results

20
votes
13answers
2k views

Best Tips for documenting code using doxygen?

My team is starting to document our C code using doxygen, paying particular attention to our public API headers. There appears to be a lot of flexibility and different special commands in doxygen, …
3
votes

Best Tips for documenting code using doxygen?

For complex projects it may be useful to have a separate file for module management, which controls the groups and subgroups. The whole hierarchy can be in one place and then each file can simply …
1
vote

Open-source radix/mtrie implementation in C?

There is a radix-tree implementation available under the GNU General Public License version 2, or (at your option) any later version: …
6
votes

Stack overflow problem!

It may help if you post some code. Edit the question to include the problem function and the error. Meanwhile, here's a very generic answer: The two principle causes of a stack ove …
1
vote

GLIBC: debugging memory leaks: how to interpret output of mtrace()

The function that is allocating the memory is being called more than once. The caller address points to the code that did the allocation, and that code is simply being run more than once. …
13
votes

What use are const pointers (as opposed to pointers to const objects)?

It allows you to protect the pointer from being changed. This means you can protect assumptions you make based on the pointer never changing or from unintentional modification, for example: …
1
vote

Operating System compile time

How long it takes will really depend on the build set up, I really doubt that the Vista engineers need a day to build the code even if it would take a day on a single machine. I work on a p …
2
votes

How to solve this compatibility-problem regarding large file support?

You could add an API to the library to return the sizeof(off_t) and then check it from the client. Alternatively the library could require every app to provide the API in order to successfully lin …
1
vote

Should network packet payload data be aligned on proper boundries?

You practically can't use a class or structure for this if you want any sort of portability. In your example, the ints may be 32-bit or 64-bit depending on your system. You're most likely using a …
0
votes

Reverse a singly linked list

Just for fun (although tail recursion optimization should stop it eating all the stack): Node* reverse (Node *root, Node *end) { Node *next = root->next; root->next = end; …
0
votes

Reverse a singly linked list

How about the more readable: Node *pop (Node **root) { Node *popped = *root; if (*root) { *root = (*root)->next; } return (popped); } void push (Node **r …
1
vote

Array of in_addr

The hostentry structure already provides the list of IP addresses as an array (MSDN). In your code exa …