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

/*	$NetBSD: h_testbits.x,v 1.1 2011/01/08 06:59:37 pgoyette Exp $ */

enum smallenum {
	SE_ONE = 1,
	SE_TWO = 2
};

enum medenum {
	ME_NEG = -1234,
	ME_ONE = 1,
	ME_TWO = 2,
	ME_MANY = 1234
};

enum bigenum {
	BE_ONE = 1,
	BE_TWO = 2,
	BE_MANY = 1234,
	BE_LOTS = 1234567
};