removed code without effect
time_t represents the number of seconds since the birth of unix.
to deal with microseconds and friends, use
a) gettimeofday
b) struct timeval
#ifndef CONSOLE_H
#define CONSOLE_H
#ifdef WIN32
#define BS 127
#else
#define BS 127
#endif
#include <iostream>
namespace Console {
int getch ();
void getpass (std::string &);
};
#endif