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

namespace A{
  namespace B{
    namespace C{
      int       x = 5;
    }
  }
}

int main(){
  using namespace A::B;
  return C::x;
}