2013-10-03 08:38:25 -04:00
|
|
|
#ifndef __INTERFACE_H__
|
|
|
|
#define __INTERFACE_H__
|
2013-10-13 06:18:08 -04:00
|
|
|
|
|
|
|
#define COLOR_RED "\033[31;1m"
|
|
|
|
#define COLOR_NORMAL "\033[0m"
|
|
|
|
#define COLOR_GREEN "\033[32;1m"
|
|
|
|
#define COLOR_GREY "\033[37;1m"
|
2013-10-16 15:19:39 -04:00
|
|
|
#define COLOR_YELLOW "\033[33;1m"
|
2013-10-18 12:00:47 -04:00
|
|
|
#define COLOR_BLUE "\033[34;1m"
|
2013-10-18 15:30:24 -04:00
|
|
|
#define COLOR_MAGENTA "\033[35;1m"
|
2013-10-13 06:18:08 -04:00
|
|
|
|
|
|
|
|
2013-10-03 08:38:25 -04:00
|
|
|
char *get_default_prompt (void);
|
|
|
|
char *complete_none (const char *text, int state);
|
|
|
|
char **complete_text (char *text, int start, int end);
|
|
|
|
void interpreter (char *line);
|
2013-10-11 16:52:20 -04:00
|
|
|
|
|
|
|
void rprintf (const char *format, ...) __attribute__ ((format (printf, 1, 2)));
|
2013-10-13 06:18:08 -04:00
|
|
|
void iprintf (const char *format, ...) __attribute__ ((format (printf, 1, 2)));
|
|
|
|
void logprintf (const char *format, ...) __attribute__ ((format (printf, 1, 2)));
|
|
|
|
void hexdump (int *in_ptr, int *in_end);
|
2013-10-16 15:19:39 -04:00
|
|
|
|
|
|
|
struct message;
|
|
|
|
void print_message (struct message *M);
|
2013-10-21 14:24:31 -04:00
|
|
|
void print_chat_name (int id, union user_chat *C);
|
|
|
|
void print_user_name (int id, union user_chat *U);
|
|
|
|
//void print_media (struct message_media *M);
|
|
|
|
void pop_color (void);
|
|
|
|
void push_color (const char *color);
|
|
|
|
void print_start (void);
|
|
|
|
void print_end (void);
|
2013-10-03 08:38:25 -04:00
|
|
|
#endif
|