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

include start
input "testing\n"
call2 OK "testing" mvgetstr 3 2
compare mvgetstr1.chk
# try a couple of backspaces, this should erase characters, we have
# embedded a cursor left sequence too but this should not be interpreted
input "abc\010\010def\eODgh\n"
call2 OK "adef\eODgh" mvgetstr 1 4
compare mvgetstr2.chk
# turn on keypad so the embedded cursor key will affect the result
call OK keypad STDSCR $TRUE
input "abc\010\010def\eODgh\n"
call2 OK "adegh" mvgetstr 2 1
compare mvgetstr3.chk