Tagged Questions
15
votes
3answers
274 views
Why does man 2 open say this?
I ran into this question while typing man 2 open. It says that there are two kinds of open, one with two args, and one with three! last time i checked we could not overload functions in C. How did ...
10
votes
3answers
6k views
Set local environment variables in C++
How do I set an environment variable in C++?
They do not need to persist past program execution
They only need to be visible in the current process
Preference for platform independent but for my ...
6
votes
2answers
267 views
Distinguishing a pipe from a file in Unix
Given a FILE*, is it possible to determine the underlying type? That is, is there a function that will tell me if the FILE* is a pipe or a socket or a regular on-disk file?
4
votes
3answers
769 views
Manpage scandir() prototype weirdness
I have a problem with scandir(): The manpage contains this as prototype:
int scandir(const char *dir, struct dirent ***namelist,
int (*filter)(const struct dirent *),
int (*compar)(const struct ...
2
votes
1answer
226 views
using a man page viewer in eclipse
After having downloaded a Linux Man Page Viewer, I am not seeing the actual man page when hovering over a function.
Should i enable it somehow? Is where a menu item i should be using?
Please ...
0
votes
1answer
226 views
RSA_sign(), object(3) and NID_sha1
The manpage for RSA_sign() says about the type parameter:
type denotes the message digest algorithm that was used to generate m.
It usually is one of NID_sha1, NID_ripemd160 and NID_md5; ...