Include additional header and separate file

main
sigonasr2, Sig, Sigo 2 years ago committed by GitHub
parent 5c835b851e
commit f9c2300ced
  1. 6
      extras.c
  2. 1
      extras.h
  3. BIN
      main
  4. 9
      main.c

@ -0,0 +1,6 @@
#include <ncurses.h>
#include "extras.h"
void writeExtras(){
addch(ACS_PI);
}

@ -0,0 +1 @@
void writeExtras();

BIN
main

Binary file not shown.

@ -1,10 +1,13 @@
#include <stdlib.h>
#include <ncurses.h>
#include "extras.h"
int main(int argc,char**argv) {
int rows,cols;
initscr();
start_color();
init_pair(1,COLOR_RED,COLOR_BLACK);
getmaxyx(stdscr,rows,cols);
raw();
keypad(stdscr,TRUE);
@ -16,11 +19,13 @@ int main(int argc,char**argv) {
addch(ACS_BLOCK);
addch(ACS_BSBS);
addch(ACS_BTEE);
addch(' ');
writeExtras();
mvaddch(5,17,ACS_DARROW);
attron(COLOR_PAIR(1));
mvprintw(4,7,"There are %dx%d squares.",rows,cols);
mvchgat(4,10,4,A_REVERSE,0,NULL);
attroff(COLOR_PAIR(1));
refresh();
getch();
endwin();

Loading…
Cancel
Save