2
0
mirror of https://github.com/xcat2/xNBA.git synced 2025-01-18 21:43:14 +00:00

make path relative (so that I don't break eb top of tree !)

This commit is contained in:
Dan Lynch 2006-06-27 13:28:43 +00:00
parent 05c0b3ce09
commit 197c0c91b2

View File

@ -1,4 +1,4 @@
#include "/home/dan/cvs/extcvs/eb/src/include/curses.h"
#include "../include/curses.h"
#include <termios.h>
#include <stddef.h>
#include <stdio.h>
@ -18,7 +18,7 @@ void _init_screen( struct _curses_screen *scr __unused ) {
tcgetattr(fileno(stdin),&runtime);
runtime.c_lflag &= ~(ICANON|ECHO);
tcsetattr(fileno(stdin),TCSANOW,&runtime);
printf("%c[=%dh",ESC,MODE);
//printf("%c[=%dh",ESC,MODE);
LINES = 25; COLS = 80;
}
@ -40,16 +40,17 @@ void _putc( struct _curses_screen *scr __unused, chtype c ) {
//printf( "%c[%d;%d",ESC,
// cpairs[pairno][0], cpairs[pairno][1] );
// print rendition (character)
printf( "%c", (char)(c & A_CHARTEXT) );
//printf("char is \"%d\"", c );
putchar( c );
}
int _getc( struct _curses_screen *scr __unused ) {
return getc(stdin);
return getchar();
}
bool _peek( struct _curses_screen *scr __unused ) {
int c;
if ( ( c = getc(stdin) ) != EOF ) {
if ( ( c = getchar() ) != EOF ) {
ungetc( c, stdin );
return TRUE;
} else { return FALSE; }