I'm writing a code that extracts information about functions (prototype) and types (enum, struct, typedef) from a C source file.
This is to augment the type information about a particular function or type in my documentation.
Basically, I don't want to manually specify type information because that information can already be found in the source code itself.
Now I'm a bit indecisive about how to name that "extracted" information.
I thought about calling it c meta data or c symbols although I'm not sure what constitutes a symbol in C: I'm not sure if a struct type is a symbol, for example.
c types would also be "wrong" because functions are not types.
Is there a canonical term that both covers function prototypes AND type information?