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

/*
 * A comment 
 *
#ifndef PLOP
 * And another  bla
#else /* PLOP */
 * And another bla
#endif /* PLOP */
 *
#ifndef PLOP
 * And yet another
#else /* PLOP */
 * and yet another
#endif /* PLOP */
 */

int
main(void)
{
#ifdef PLOP

#endif /* PLOP */
	printf("something");

	return (0);
}