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

struct _foo
{
  int x;
  int y;
  int z;
};

typedef struct _foo Foo;

int
main (int argc, char *argv[])
{
  Foo *foo = 0;
  return 0;
}