This commit is contained in:
Alessandro Mauri 2019-10-22 16:26:30 +02:00
parent a2bfacedba
commit 51fe76b5e8
4 changed files with 483 additions and 471 deletions

BIN
ste

Binary file not shown.

12
ste.c
View File

@ -82,6 +82,9 @@ static void rowAdd (char *s, int len);
//inline void bufferFree (void);
static int whatsThat (void);
/* testing */
void updateInfo (void);
/* --------------------------------- main ------------------------------------ */
int main (int argc, char *argv[])
{
@ -462,3 +465,12 @@ int whatsThat (void) {
}
/*--------------------------------- garbage ------------------------------------*/
void updateInfo (void)
{
getmaxyx(stdscr, t.dim.y, t.dim.x);
t.dim.y -= 1;
t.dim.x -= t.pad + 1;
}
/*--------------------------------- testing ------------------------------------*/