db_bridge/include/console.hpp
author Markus Bröker <mbroeker@largo.dyndns.tv>
Fri, 05 Mar 2010 22:03:56 +0100
changeset 114 6f6850407ccf
parent 65 76514757b0d6
permissions -rw-r--r--
buffer overflow in utf8 and ncurses demo the buffer for wctomb was too small committer: Markus Bröker <mbroeker@largo.homelinux.org>

#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