ctags
ctags copied to clipboard
C: cannot extract function prototype decls with structure definitions
input.c:
int f0(void);
struct S {int s;} f1(void) { }
struct S {int s;} f2(void);
cmdline: ctags --kinds-C=+p -o -
Though f0 and f1 are extracted, f2 is not.