RosettaCodeData/Task/Call-a-function-in-a-shared-library/J/call-a-function-in-a-shared-library-1.j
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

12 lines
188 B
Text

require 'dll'
strdup=: 'msvcrt.dll _strdup >x *' cd <
free=: 'msvcrt.dll free n x' cd <
getstr=: free ] memr@,&0 _1
DupStr=:verb define
try.
getstr@strdup y
catch.
y
end.
)