Search Results

3
votes

How do you deal with NUL?

For dealing with strings, I alwayse represent the null character as '\0'. For pointers, I try to use implicit-conversion-to-boolean (if (!myPtr) or if (myPtr)) for pointer nullity. If …
1
vote

How do I find the file handles that my process has opened in Linux?

I agree with what other people have said about closing random files being dangerous. You might end up filing some pretty interesting bug reports for all of your third-party tools. That sai …
1
vote

How can I improve/replace sprintf, which I’ve measured to be a performance hotspot?

I would do a few things... cache the current time so you don't have to regenerate the timestamp every time do the time conversion manually. The slowest part of the pri …