Improve ctags callback API
[geany-mirror.git] / tests / ctags / bug556645.c
blobd14f2cb05dc36d02e604c7c03a9ac69a21e97dcb
1 /*
2 From noreply@sourceforge.net Wed May 29 23:11:25 2002
3 Date: Wed, 15 May 2002 23:25:52 -0700
4 From: noreply@sourceforge.net
5 To: noreply@sourceforge.net
6 Subject: [ ctags-Bugs-556645 ] Some typedef can not be tagged in C code
8 Bugs item #556645, was opened at 2002-05-16 14:25
9 You can respond by visiting:
10 http://sourceforge.net/tracker/?func=detail&atid=106556&aid=556645&group_id=6556
12 Category: None
13 Group: None
14 Status: Open
15 Resolution: None
16 Priority: 5
17 Submitted By: Howard Wu (howardhbwu)
18 Assigned to: Nobody/Anonymous (nobody)
19 Summary: Some typedef can not be tagged in C code
21 Initial Comment:
22 My Ctags version:5.2.3
24 The typedef of "Qtype" as the following,
27 #define A1(_type, _length) \
28 struct { \
29 unsigned int head; \
30 unsigned int tail; \
31 bool is_full; \
32 _type queue[_length]; \
35 typedef A1(ilm_struct, 1) Qtype;
38 As using ctags, the "Qtype" can not be tagged by it.