You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __PERF_TERM_H
|
|
#define __PERF_TERM_H
|
|
|
|
struct termios;
|
|
struct winsize;
|
|
|
|
void get_term_dimensions(struct winsize *ws);
|
|
void set_term_quiet_input(struct termios *old);
|
|
|
|
#endif /* __PERF_TERM_H */
|
|
|