代码搜索:struct
找到约 10,000 项符合「struct」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5527786
c bbb.c
struct looksets
{
int lset[10];
};
struct looksets lkst[];
flset( p )
struct looksets *p;
{
p-- > lkst;
}
www.eeworm.com/read/162614/5528119
c 941111-1.c
main ()
{
struct S { int i; char c; } obj1, obj2;
foo ();
if (obj1.c != obj2.c)
bar ();
}
www.eeworm.com/read/162614/5528245
c 900116-1.c
struct st {char a, b, c, d; }
zloop (struct st *s, int *p, int *q)
{
int i;
struct st ss;
for (i = 0; i < 100; i++)
{
ss = s[i];
p[i] = ss.c;
q[i] = ss.b;
}
}
www.eeworm.com/read/162614/5528389
c init-3.c
struct empty { };
struct something {
int spacer;
struct empty foo;
int bar;
};
struct something X = {
foo: { },
bar: 1,
};
www.eeworm.com/read/162614/5528584
c 920821-2.c
typedef struct{int p[25];}t1;
struct{t1 x,y;}y;
t1 x[1];
f(){y.x=*x;y.y=*x;}
www.eeworm.com/read/162614/5528626
c 951004-1.c
typedef struct
{
short v, h;
} S;
S a;
f (S pnt)
{
S mpnt, mtp;
(&pnt)->v -= 1;
mpnt = pnt;
mtp = a;
if (mtp.v != mpnt.v)
{
S tpnt;
tpnt = mtp;
mtp = mpnt;
www.eeworm.com/read/162614/5528642
c 20011130-2.c
/* This testcase caused infinite loop in life info computation
after if conversion on IA-64. Conditional register dead for
pseudo holding sign-extended k was improperly computed,
resulting i
www.eeworm.com/read/162614/5529392
c incomplete-1.c
struct a
{
struct b t; /* { dg-error "has incomplete type" } */
};
www.eeworm.com/read/162614/5529416
c 920824-1.c
struct s{struct s{int i;}x;}; /* { dg-error "nested redefinition" } */
www.eeworm.com/read/162614/5531932
c gnu_java_awt_peer_gtk_gtkpopupmenupeer.c
/* gtkpopupmenupeer.c -- Native implementation of GtkPopupMenuPeer
Copyright (C) 1999, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you