1
vote
1
vote
Is there a way to redefine malloc at link time on Windows?
From version 3.0 Firefox uses a custom allocator (AFAIR jmalloc) -- you could check how they did it. I read that they had some problems with it. You may check this …
3
votes
How to redirect data to stdin within a single executable?
rdbuf does exactly what you want. You can open a file for reading and replace cin's rdbuf with the one from t …
0
votes
how to prevent fgets blocks when file stream has no new data.
I you would use POSIX functions for IO instead of those of C library, you could use select or …
1
vote
Most efficient way to list items in C/C++
You can create a dictionary/hashmap of groups and for each group store a bool saying if a item of that group was printed or not.
Sample code:
#include <unordered_map>
…
1
vote
XML Parser for C
You can try ezxml -- it's a lightweight parser written entirely in C.
For C++ you can check out …
0
votes
How to determine a process “virtual size” (WinXP)?
In 32bit WindowsXP address space is divided in two 2GB parts: one part for the program and the other for the kernel. You can increase application part to 3GB using the …
6
votes
How to prevent multiple definitions in C?
You shouldn't include other source files (*.c) in .c files. I think you want to have a header (.h) file with the DECLARATION of test function, and have it's DEFINITION in a separate .c fil …
