B
Bill Cunningham
I am looking at the binutils API and some of there function look strange
to me. For one thing they don't seem to want to simply show the prototype of
the functions with their explaination. Here's a link and a few odd functions
maybe someone can help me with. I hope this isn't too OT.
http://sourceware.org/binutils/docs-2.21/bfd/index.html
typedef void (*bfd_error_handler_type) (const char *, ...);
What does that mean? There's a typedef void. And then
(*bfd_error_handler_type)... is that a cast? The parameter looks like to
take a variable argument list life printf. (const char *,...). What is this
function's return type?
Bill
to me. For one thing they don't seem to want to simply show the prototype of
the functions with their explaination. Here's a link and a few odd functions
maybe someone can help me with. I hope this isn't too OT.
http://sourceware.org/binutils/docs-2.21/bfd/index.html
typedef void (*bfd_error_handler_type) (const char *, ...);
What does that mean? There's a typedef void. And then
(*bfd_error_handler_type)... is that a cast? The parameter looks like to
take a variable argument list life printf. (const char *,...). What is this
function's return type?
Bill