Rework cset functions to remove non-standard void * arithmetic.

Fixes compiling on Irix.


git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@108 13b04d17-f746-0410-82c6-800466cd88b0
This commit is contained in:
Kevin Easton
2011-02-02 12:13:54 +00:00
parent fc33f520ae
commit 08cca81993
3 changed files with 19 additions and 43 deletions

View File

@@ -414,7 +414,7 @@ void cset_variable(char *, char *, char *, char *);
int BX_get_cset_int_var(CSetList *, int);
void BX_set_cset_int_var(CSetList *, int, int);
char *BX_get_cset_str_var(CSetList *, int);
void BX_set_cset_str_var(CSetList *, int, char *);
void BX_set_cset_str_var(CSetList *, int, const char *);
CSetList *create_csets_for_channel(char *channel);
void remove_csets_for_channel(CSetList *);