Subversion Repositories MLServ

Rev

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

Rev Author Line No. Line
1 nishi 1
/* $Id: string.c 1 2024-09-07 01:58:02Z nishi $ */
2
 
3
#include "cm_string.h"
4
 
5
#include <string.h>
6
#include <stdlib.h>
7
 
8
char* cm_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* cm_strdup(const char* str){
17
	return cm_strcat(str, "");
18
}