2
votes
3answers
177 views
How to integration-test a network application in C
I've never managed to move from unit-testing to integration-testing in any graceful or automated way when it comes to network code.
So my question is: Given a simple single …
2
votes
1answer
81 views
Concatenate path and basename
basename(3) and dirname(3) can split an absolute path into its respective components.
Short of using snprintf(3), is there a natural posix-compliant library call …
0
votes
Rationale behind return 0 as default value in C/C++
Besides all the fine points made by previous posters, it also cleans up the code considerably when a function returns 0 on success.
Consider:
if ( somefunc() ) {
// handl …
0
votes
Does a function exist that searches the unix $PATH variable and returns true if a certain file exists?
Once you have an absolute (canonicalized) pathname, you can use either stat(2) or access(2) to see if the file exists.
With stat:
struct st …
3
votes
Where can I find an example unzipper using zlib?
The zlib-bin source package on my system (linux) has some example programs called "minizip" and "miniunzip" which shows just that.
…
0
votes
gartrip calibration file format/generation
Do you mean route files as in "Calibration" files? In that case, gpsbabel can convert between a gazillion formats.
…
1
vote
new dynamic tools analysis for C-code
Have a peek at Fenris. Maybe not a valgrind replacement, but still very cool :) In fact, nearly all the tools …
