Training courses
Kernel and Embedded Linux
Bootlin training courses
1 2 3 4 5 6 7 8 9 10
/* C99 struct initialization */ struct { int i; char *s; } c[] = { { .i = 2, }, { .s = "foo" }, { .i = 1, .s = "bar" }, { .s = "foo", .i = -1 }, };