Hello everyone, Is there some list of all data types (structures) definitions that are defined by the developers? For example, the definition of the structure conversations___table I found in the file conversations_table.h. For now, I need the definitions for the structures: -conv___id_t -nstime_t -SAT_E -address -ptype Thank you in advance. Best regards, Kiril asked 12 Sep '12, 08:58 bluzerot |
One Answer:
The source code is where the answer is. Look into using tools like cscope to find them easily. answered 13 Sep '12, 04:55 Jaap ♦ |
Even simply doing grep helps or see which headers are included by the file using them and look trough those.
I have the following alias:
which helps a lot in finding files in which certain strings occur.
Usage:
Which helps me a lot in finding my way through the code :-)