2 * GRUB -- GRand Unified Bootloader
3 * Copyright (C) 2013 Free Software Foundation, Inc.
5 * GRUB is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * GRUB is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
19 #include <grub/term.h>
22 #include <grub/test.h>
24 GRUB_MOD_LICENSE ("GPLv3+");
27 static int seqptr
, nseq
;
28 static struct grub_term_input
*saved
;
29 static int fake_input
;
32 fake_getkey (struct grub_term_input
*term
__attribute__ ((unused
)))
34 if (seq
&& seqptr
< nseq
)
39 static struct grub_term_input fake_input_term
=
46 grub_terminal_input_fake_sequence (int *seq_in
, int nseq_in
)
49 saved
= grub_term_inputs
;
52 seq
= grub_malloc (nseq_in
* sizeof (seq
[0]));
56 grub_term_inputs
= &fake_input_term
;
57 grub_memcpy (seq
, seq_in
, nseq_in
* sizeof (seq
[0]));
65 grub_terminal_input_fake_sequence_end (void)
70 grub_term_inputs
= saved
;