term.h 239 B

1234567891011
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __PERF_TERM_H
  3. #define __PERF_TERM_H
  4. struct termios;
  5. struct winsize;
  6. void get_term_dimensions(struct winsize *ws);
  7. void set_term_quiet_input(struct termios *old);
  8. #endif /* __PERF_TERM_H */