Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

/* C99 struct initialization */
struct {
	int i;
	char *s;
} c[] = { 
	{ .i =  2, },
	{ .s =  "foo" },
	{ .i =  1, .s = "bar" },
	{ .s =  "foo", .i = -1 },
};