Search Results

5
votes

C/C++ Web Server Library?

My current favourite is libpion: pion-network-library which effectively uses the …
2
votes

Does anyone follow the MISRA C Specification?

While my projects are not decreed or required to comply with MISRA C++, I try to make sure that my code is mostly compliant. There are only a …
0
votes

How can I hook Windows functions in C/C++?

Take a look at EasyHook - it is more powerful than Detours and it is free. …
1
vote

Do you still limit line length in code?

Unfortunately, I routinely have to deal with legacy source code where in a few cases there is a single line of source code that is more that 3 THOUSAND CHARACTERS WIDE! Seriously. These lon …
0
votes

What C/C++ functions are most often used incorrectly and can lead to buffer overflows?

An additional gotcha in C is the "strncpy()" function. Many people do not realize that it is free to return a string that is not null terminated. …