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

@@
type T;
T **PP;
T *P;
@@

  P = *PP;
+ *PP = NULL;
  ...
- *PP = NULL;

@@
type T;
identifier PP;
identifier P;
@@

  T *P = *PP;
+ *PP = NULL;
  ...
- *PP = NULL;