blob: 537daa570057038d7e75b00e85941542025b4794 [file] [log] [blame]
%module string_simple
%newobject copy_str;
%inline %{
#include <string.h>
const char* copy_str(const char* str) {
size_t len = strlen(str);
char* newstring = (char*) malloc(len + 1);
strcpy(newstring, str);
return newstring;
}
%}