贵港吾悦商业管理有限公司多角色网上演练(吾悦广场)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
537 B

//
// c_string.c
// Unity-iPhone
//
// Created by Max Botvinev on 03.10.17.
//
#include <string.h>
#include <stdlib.h>
#include "c_string.h"
//Unsafe result
const char * append(const char * a, const char * b) {
size_t size1 = strlen(a);
size_t size2 = strlen(b);
size_t size = sizeof(char) * (size1 + size2 + 1);
char * append_buffer = malloc(size);
memcpy(append_buffer, a, size1);
memcpy(append_buffer + size1, b, size2);
append_buffer[size1 + size2] = '\0';
return append_buffer;
}