diff options
| author | Tom Rini <trini@ti.com> | 2013-03-31 08:43:12 -0400 |
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-03-31 08:43:12 -0400 |
| commit | 5644369450635fa5c2967bee55b1ac41f6e988d0 (patch) | |
| tree | 29c272d5a27389635f37171ad142174fb039b0d8 /include/ansi.h | |
| parent | 1d3dea12e21275eab5af1b50ef4a3be89cfffc15 (diff) | |
| parent | d999398822c6d57335677bc4ecc6bea4a569492f (diff) | |
| download | olio-uboot-2014.01-5644369450635fa5c2967bee55b1ac41f6e988d0.tar.xz olio-uboot-2014.01-5644369450635fa5c2967bee55b1ac41f6e988d0.zip | |
Merge branch 'agust@denx.de' of git://git.denx.de/u-boot-staging
Diffstat (limited to 'include/ansi.h')
| -rw-r--r-- | include/ansi.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/include/ansi.h b/include/ansi.h new file mode 100644 index 000000000..0e40b1d4e --- /dev/null +++ b/include/ansi.h @@ -0,0 +1,42 @@ +/* + * (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" |