summaryrefslogtreecommitdiff
path: root/testing/nTox.h
blob: 432e0274af0bf6d3f0e72ed717df8d037a72b457 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef NTOX_H
#define NTOX_H

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ncurses.h>
#include <curses.h>
#include <ctype.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include "../core/Messenger.h"
#define STRING_LENGTH 256
#define HISTORY 50

void new_lines(char *line);
void line_eval(char lines[HISTORY][STRING_LENGTH], char *line);
void wrap(char output[STRING_LENGTH], char input[STRING_LENGTH], int line_width) ;
int count_lines(char *string) ;
char *appender(char *str, const char c);
void do_refresh();

#endif