vm-translator/util.c

11 lines
212 B
C
Raw Normal View History

2020-11-17 12:12:39 -05:00
#include <string.h>
#include <stdlib.h>
#include "util.h"
char* heapstr(const char* str, int len) {
int sz = sizeof(char) * (len + 1);
char* outstr = (char*)malloc(sz);
strcpy(outstr, str);
return outstr;
}