|
SOLUTIONS
|
MATHEMATICA MATHLINK C FUNCTION
MLReleaseByteString()
void MLReleaseByteString(MLINK link, const unsigned char *s, int n)
disowns memory allocated by MLGetByteString() to store the array of character codes s.
DetailsDetails
- MLReleaseByteString() is declared in the MathLink header file mathlink.h.
ExamplesExamplesopen allclose all
Basic Examples (1)Basic Examples (1)
#include "mathlink.h"
/* read a string composed of character code values 0-255 from the link and release that memory to MathLink for deallocation */
void f(MLINK lp)
{
const unsigned char *string;
int length;
if(! MLGetByteString(lp, &string, &length, 0))
{ /* unable to read byte string from lp */ }
/* ... */
MLReleaseByteString(lp, string, length);
}
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »
