Reputation: 2052
I am using CodeBlocks 10.05 and programming in C , with ffmpeg library . How do I see the source code of a library function ?
Eg : I use avformat_open_input(parameters) in my program . I want to see the body of the function . How can I see ?
Thanks .
Upvotes: 4
Views: 784
Reputation: 11
use a Linux system. then :
man 3 <function-name>
Upvotes: 1