summaryrefslogtreecommitdiff
path: root/testing/nTox.h
blob: 8f8a07d00514d3d3d7ad9dc3c25d38ff400bc74a (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
25
26
#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 <sys/types.h>
#include <netdb.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