Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a FILE *, returned by a call to fopen(). I need to get a file descriptor from it, to make calls like fsync(fd) on it. What's the function to get a file descriptor from a file pointer?

share|improve this question
3  
Self-answers in this "jeopardy" form are encouraged. – dmckee Jul 2 '10 at 23:18

1 Answer

up vote 35 down vote accepted

The proper function is int fileno(FILE *stream). It can be found in <stdio.h>, and is part of the standard C library on UNIX-like systems from SVR2 onwards.

share|improve this answer
2  
Strictly speaking, there wouldn't be any need to mention any headers or libraries if the function was indeed a part of standard C library. However, it is not standard, which is why it might make sense to mention the header at least. – AndreyT Jul 2 '10 at 23:55
4  
Accessing functions in the standard C library does require including headers, at least if your compiler expects prototypes (I never remember what's actually standard behavior in that respect). Without headers, no names are defined at the beginning of a C file. – Novelocrat Jul 3 '10 at 0:20
@Novelocrat: I didn't mean that there's no need to #include anything. I merely meant that it is always easy to find the name of the proper header for a standard function. I.e. it is not really critical to mention the exact header name in the answer. – AndreyT Jul 3 '10 at 1:51
This is a good answer, but it is worth noting that this isn't a standard c function, it is a posix function. – Evan Teran Jul 3 '10 at 4:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.