mirror of https://github.com/MidnightCommander/mc
* tty.h (tty_setcolor): Added.
* tty.c (tty_setcolor): Likewise.
This commit is contained in:
parent
5c1638523e
commit
67f8cf661a
|
@ -1,3 +1,8 @@
|
|||
2006-02-03 Roland Illig <roland.illig@gmx.de>
|
||||
|
||||
* tty.h (tty_setcolor): Added.
|
||||
* tty.c (tty_setcolor): Likewise.
|
||||
|
||||
2006-02-03 Pavel Tsekov <ptsekov@gmx.net>
|
||||
|
||||
* dir.c (do_sort): Remove unused variable.
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
#include <stdarg.h>
|
||||
|
||||
#include "global.h"
|
||||
#include "color.h"
|
||||
#include "main.h" /* for slow_terminal */
|
||||
#include "tty.h"
|
||||
|
||||
|
@ -113,6 +114,12 @@ tty_getyx(int *py, int *px)
|
|||
#endif
|
||||
}
|
||||
|
||||
extern void
|
||||
tty_setcolor(int c)
|
||||
{
|
||||
attrset(c);
|
||||
}
|
||||
|
||||
extern void
|
||||
tty_print_char(int c)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue