: :
: : : Thanks
: : :
: : One problem though, I compile with:
: : gcc -g client.c -lcurses
: : but it says:
: : client.c:16:20: curses.h: No such file or directory
: :
: : I tried to compile with -lncurses too but it didn't work either...
: :
: : Why is it called curses?
: : Becouse the include is cursed.

: :
:
:
: you may have to specify the full path to the curses .h files
: gcc -g -I/<path to header files here> client.c -lcurses
:
: also search your hard drive to insure the curses library is installed.
:
I searched for it and it couldn't be found, so I downloaded it.
Now the hard part is to understand the instructions to install...
Thanks