dat.h - jacc - Jabber/XMPP client for Plan 9
(HTM) git clone git://r-36.net/jacc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
dat.h (568B)
---
1 #ifndef JDAT_H
2 #define JDAT_H
3
4 typedef struct command command;
5 struct command {
6 char **params;
7 int l;
8 };
9
10 void playmp3(char *file);
11 void *reallocj(void *p, int s, short d);
12 void killproc(int p);
13 char *setwindowlbl(char *w);
14 char *getwindowlbl(void);
15 char *mktmstmp(char bord, char bord_e);
16 char *setchan(char *old, char *new);
17 char *printjid(char *user, char *serv, char *reso);
18 char *getarg(char *b, char n, char t);
19 void readwrite(int sock, int fd);
20 char *getmonth(int m);
21 char *getday(int d);
22 char *filterhin(char *in, int a);
23 char *filterzur(char *out);
24
25 #endif