Small update of the French translation
[geany-mirror.git] / tests / ctags / local.c
blob536b9b2d3f21f92b5c0c6d887588b668960edcc8
1 main ()
3 int a;
4 int b = 3;
5 a = 2;
8 static boolean isContextualKeyword (const tokenInfo *const token)
10 boolean result;
11 label:
12 goto label;
13 switch (token->keyword)
15 case KEYWORD_UNION:
16 result = TRUE;
17 break;
19 default: result = FALSE; break;
21 return result;