Subversion Repositories IRCServ

Rev

Rev 6 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

/* $Id: is_util.h 7 2024-08-25 20:49:55Z nishi $ */

#ifndef __IS_UTIL_H__
#define __IS_UTIL_H__

char* is_strcat(const char* a, const char* b);
char* is_strcat3(const char* a, const char* b, const char* c);
char* is_strdup(const char* str);

struct is_config {
        int (*send_cmd)(const char* name, const char* cmd);
        int (*read_cmd)(void);
};

struct is_message {
        char* prefix;
        char* command;
        char** params;
};

#endif