Subversion Repositories IRCServ

Rev

Rev 6 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6 Rev 7
Line 1... Line 1...
1
/* $Id: is_util.h 6 2024-08-25 19:00:39Z nishi $ */
1
/* $Id: is_util.h 7 2024-08-25 20:49:55Z nishi $ */
2
 
2
 
3
#ifndef __IS_UTIL_H__
3
#ifndef __IS_UTIL_H__
4
#define __IS_UTIL_H__
4
#define __IS_UTIL_H__
5
 
5
 
6
char* is_strcat(const char* a, const char* b);
6
char* is_strcat(const char* a, const char* b);
-
 
7
char* is_strcat3(const char* a, const char* b, const char* c);
-
 
8
char* is_strdup(const char* str);
7
 
9
 
8
struct is_config {};
10
struct is_config {
-
 
11
	int (*send_cmd)(const char* name, const char* cmd);
-
 
12
	int (*read_cmd)(void);
-
 
13
};
-
 
14
 
-
 
15
struct is_message {
-
 
16
	char* prefix;
-
 
17
	char* command;
-
 
18
	char** params;
-
 
19
};
9
 
20
 
10
#endif
21
#endif