git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@855 626c5289-ae23-0410-ae9c-e8d60b6d4f22
5 lines
209 B
OpenEdge ABL
5 lines
209 B
OpenEdge ABL
%typemap(ruby,varin) char * "
|
|
Check_Type($source, T_STRING);
|
|
if ($target) free($target);
|
|
$target = xmalloc(RSTRING($source)->len + 1);
|
|
strncpy($target, STR2CSTR($source), RSTRING($source)->len + 1);";
|