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: %clang_analyze_cc1 -Wno-incompatible-library-redeclaration -analyzer-checker=core,unix.cstring,alpha.unix.cstring -verify %s

// expected-no-diagnostics

void *strcpy(unsigned char *, unsigned char *);

unsigned char a, b;
void testUnsignedStrcpy() {
  strcpy(&a, &b);
}