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

// RUN: grep -Ev "// *[A-Z-]+:" %s | clang-format -lines=2:2 \
// RUN:   | FileCheck -strict-whitespace %s

void  f() {
// CHECK: void f() {
int i;
// CHECK: {{^  int\ i;}}
 int j;
// CHECK: {{^  int\ j;}}
}