annotate mcabber/utils.h @ 0:b3b2332715fb

Tailorization of /trunk Import of the upstream sources from Repository: file:///tmp/svn-mcabber Module: /trunk Revision: 15
author tailor@frmp8452
date Thu, 30 Jun 2005 21:39:31 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
1 #ifndef __UTILS_H__
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
2 #define __UTILS_H__ 1
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
3
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
4 #include <ncurses.h>
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
5
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
6 char **ut_SplitMessage(char *mensaje, int *nsubmsgs, unsigned int maxlong);
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
7 void ut_InitDebug(int level);
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
8 void ut_WriteLog(const char *fmt, ...);
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
9 char *ut_strrstr(const char *s1, const char *s2);
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
10 char *getattr(char *buffer, char *what);
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
11 char *gettag(char *buffer, char *what);
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
12 void ut_CenterMessage(char *text, int width, char *output);
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
13
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
14
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
15
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
16 #endif