fish-shell/src/termsize.h
ridiculousfish 732f7284d4 Adopt the new termsize
This eliminates the C++ version.
2023-03-19 16:13:41 -07:00

13 lines
245 B
C++

// Support for exposing the terminal size.
#include "config.h" // IWYU pragma: keep
#ifndef FISH_TERMSIZE_H
#define FISH_TERMSIZE_H
#if INCLUDE_RUST_HEADERS
#include "termsize.rs.h"
#else
struct termsize_t;
#endif
#endif // FISH_TERMSIZE_H