ctags icon indicating copy to clipboard operation
ctags copied to clipboard

C: cannot extract function prototype decls with structure definitions

Open masatake opened this issue 2 years ago • 0 comments

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.

masatake avatar Feb 24 '24 02:02 masatake