aboutsummaryrefslogtreecommitdiffstats
path: root/bitlbee.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2006-03-31 19:55:47 +0200
committerWilmer van der Gaast <wilmer@gaast.net>2006-03-31 19:55:47 +0200
commite27661d09e8c3fc85c979d4769ba20d1d3c289e2 (patch)
tree63c11c2afb214d8a2077c78a19ee1b81ec0806ba /bitlbee.h
parentd783e48a831cf5058e2307a382e7e95a06680289 (diff)
Finished the iconv() fix. Instead of doing it every time something goes from
or to the IM-modules, it's now just done with everything that goes between BitlBee and the user. Incomparably more efficient/reliable. Plus some more cleanups. It compiles, can't test it for real yet. ;-)
Diffstat (limited to 'bitlbee.h')
-rw-r--r--bitlbee.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/bitlbee.h b/bitlbee.h
index 4efdddd9..4da87ec6 100644
--- a/bitlbee.h
+++ b/bitlbee.h
@@ -110,6 +110,7 @@ extern char *CONF_FILE;
#include "help.h"
#include "query.h"
#include "sock.h"
+#include "util.h"
typedef struct global {
/* In forked mode, child processes store the fd of the IPC socket here. */
@@ -132,10 +133,6 @@ gboolean bitlbee_io_current_client_write( GIOChannel *source, GIOCondition condi
void root_command_string( irc_t *irc, user_t *u, char *command, int flags );
void root_command( irc_t *irc, char *command[] );
void bitlbee_shutdown( gpointer data );
-double gettime( void );
-G_MODULE_EXPORT void http_encode( char *s );
-G_MODULE_EXPORT void http_decode( char *s );
-G_MODULE_EXPORT char *strip_newlines(char *source);
extern global_t global;