123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /*
- * (C) Copyright 2012
- * Pali Rohár <pali.rohar@gmail.com>
- *
- * See file CREDITS for list of people who contributed to this
- * project.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
- */
- /*
- * ANSI terminal
- */
- #define ANSI_CURSOR_UP "\e[%dA"
- #define ANSI_CURSOR_DOWN "\e[%dB"
- #define ANSI_CURSOR_FORWARD "\e[%dC"
- #define ANSI_CURSOR_BACK "\e[%dD"
- #define ANSI_CURSOR_NEXTLINE "\e[%dE"
- #define ANSI_CURSOR_PREVIOUSLINE "\e[%dF"
- #define ANSI_CURSOR_COLUMN "\e[%dG"
- #define ANSI_CURSOR_POSITION "\e[%d;%dH"
- #define ANSI_CURSOR_SHOW "\e[?25h"
- #define ANSI_CURSOR_HIDE "\e[?25l"
- #define ANSI_CLEAR_CONSOLE "\e[2J"
- #define ANSI_CLEAR_LINE_TO_END "\e[0K"
- #define ANSI_CLEAR_LINE "\e[2K"
- #define ANSI_COLOR_RESET "\e[0m"
- #define ANSI_COLOR_REVERSE "\e[7m"
|