Subversion Repositories Mokou

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 nishi 1
/* $ID$ */
2
 
3
#ifndef __MK_UTIL_H__
4
#define __MK_UTIL_H__
5
 
6
#include <stdbool.h>
7
 
8
char* mk_strcat(const char* a, const char* b);
9
char* mk_strcat3(const char* a, const char* b, const char* c);
10
char* mk_strdup(const char* a);
11
bool mk_endswith(const char* str, const char* end);
12
 
13
#endif