4 lines
140 B
Text
4 lines
140 B
Text
|
|
p = ccall(:strdup, Ptr{Cuchar}, (Ptr{Cuchar},), "Hello world")
|
||
|
|
@show unsafe_string(p) # "Hello world"
|
||
|
|
ccall(:free, Void, (Ptr{Cuchar},), p)
|