Search Results

0
votes

What is wrong with this _popen / select example?

First of all, as yourself and others have pointed out, select() is only valid for sockets under Windows. select() does not work on streams which is what _popen() …
0
votes

Unit testing error conditions - EINTR

As Kris suggests, temporarily replace calls to the "real" fclose() with your own implementation defined in your unit test code. Your implementation could do something as simple as: …
0
votes

Binary “tail” a file

less somefile Then press shift F …
1
vote

How can Inheritance be modelled using C?

Since early versions of C++ were mainly a preprocessor that converted into C, it's deinitely possible. …
1
vote

Determine if C library is installed on Unix

The simplest way is to invoke ld with the -l option. This will effectively test the existence of the library, searching the standard library locations automatically: …
1
vote

I need Reference and Explanation of all C standard functions

Here's one of a multitude of possible references: http://en.wikipedia.org/wiki/C%5Fstandard%5Flibrary …
3
votes

Full-featured date and time library

Take a look at the dateutil and possibly mx.DateTime …