2017-01-14 23:46:31 +08:00
|
|
|
/*
|
|
|
|
* Textual frontend for Tox.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright © 2016-2017 The TokTok team.
|
|
|
|
* Copyright © 2013 Tox project.
|
2013-07-26 09:45:56 +08:00
|
|
|
*
|
2017-01-14 23:46:31 +08:00
|
|
|
* This file is part of Tox, the free peer to peer instant messenger.
|
2013-07-26 09:45:56 +08:00
|
|
|
*
|
2017-01-14 23:46:31 +08:00
|
|
|
* Tox is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2013-07-26 09:45:56 +08:00
|
|
|
*
|
2017-01-14 23:46:31 +08:00
|
|
|
* Tox is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2013-08-11 11:24:11 +08:00
|
|
|
*
|
2017-01-14 23:46:31 +08:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Tox. If not, see <http://www.gnu.org/licenses/>.
|
2013-07-26 09:45:56 +08:00
|
|
|
*/
|
2013-07-14 01:31:16 +08:00
|
|
|
#ifndef NTOX_H
|
|
|
|
#define NTOX_H
|
|
|
|
|
2013-11-11 02:04:01 +08:00
|
|
|
/*
|
|
|
|
* module actually exports nothing for the outside
|
|
|
|
*/
|
|
|
|
|
2013-07-14 01:31:16 +08:00
|
|
|
#include <ctype.h>
|
2013-11-11 02:04:01 +08:00
|
|
|
#include <curses.h>
|
2013-08-27 19:06:19 +08:00
|
|
|
|
2013-08-04 20:10:37 +08:00
|
|
|
#include "../toxcore/tox.h"
|
2013-08-03 10:34:45 +08:00
|
|
|
|
2013-07-14 01:31:16 +08:00
|
|
|
#define STRING_LENGTH 256
|
|
|
|
#define HISTORY 50
|
|
|
|
|
|
|
|
#endif
|