Skip to content
slc.cc 520 B
Newer Older
Seblu's avatar
Seblu committed

#include <getopt.h>

#include "slc.hh"
#include "options.hh"

/*!
** Program entry point
**
** @param argc arg count
** @param argv arg vector
**
** @return program err code
*/
int main(int argc, char *argv[])
{
  Options o;

  // get options
  o.load(argc, argv);

  // Init ncurses
  initscr();

  // register end stop ncurses before exit
  atexit((void (*)(void)) endwin);

  // Processing
  printw("salut !!!!");
  addch('a' |A_BOLD);

  refresh();
  getch();

  WINDOW *sender;
  WINDOW *receiver;

  return 0;
}