Subversion Repositories Keine

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 nishi 1
/* $Id: util.c 2 2024-09-11 09:16:23Z nishi $ */
2
 
3
#include "kn_util.h"
4
 
5
#include <string.h>
6
#include <stdlib.h>
7
 
8
char* kn_strcat(const char* a, const char* b){
9
	char* str = malloc(strlen(a) + strlen(b) + 1);
10
	memcpy(str, a, strlen(a));
11
	memcpy(str + strlen(a), b, strlen(b));
12
	str[strlen(a) + strlen(b)] = 0;
13
	return str;
14
}
15
 
16
char* kn_strdup(const char* a){
17
	return kn_strcat(a, "");
18
}