RosettaCodeData/Task/Call-a-function-in-a-shared-library/J/call-a-function-in-a-shared-library-1.j

13 lines
188 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
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.
)