Is it possible in C to do method chaining in the following way:
// is this the closest to item.find('path').find('subpath') ?
item -> find('path') -> find('subpath')
Or is this construction not really possible? If it's possible (or a variation of it), what might be the most basic example?
// like an XML hierarchical path
typedef struct Item {
char *path;
find (??)
} Path;