blob: d7396d46bc8382d0d4de9c68d9b251674b647e62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
struct foo1
{
unsigned int d_ino;
const char * d_reclen;
unsigned short d_namlen;
char d_name[1];
};
struct foo2
{
unsigned int a : 1;
unsigned int bcd : 3;
unsigned int ef : 2;
unsigned int : 2;
unsigned short more;
int fields;
};
typedef struct
{
bitfld a : 8;
bitfld b : 16;
bitfld : 8;
} type_t;
struct foo { int a; char *b };
static int idx;
static const char ** tmp;
static char buf[64];
static unsigned long how_long;
// comment
static int ** tmp;
static char buf[64];
void bar(int someval,
void *puser,
const char *filename,
struct willy *the_list,
int list_len)
{
int idx;
const char ** tmp;
char buf[64];
unsigned long how_long;
return(-1);
}
|