MLReleaseUTF32String (C Function)

MLReleaseUTF32String has been replaced by WSReleaseUTF32String.

void MLReleaseUTF32String(MLINK link,const unsigned int *s,int len)

disowns memory allocated by MLGetUTF32String() to store the UTF-32 encoded string s.

Details

  • MLReleaseUTF32String() is declared in the MathLink header file mathlink.h.

Examples

Basic Examples  (1)

#include "mathlink.h"

/* read a UTF-32 encoded string from a link and then release the memory to MathLink for deallocation */

void f(MLINK lp)
{
    const unsigned int *string;
    int length;

    if(! MLGetUTF32String(lp, &string, &length))
        { /* unable to read the UTF-32 encoded string from lp */ }

    /* ... */

    MLReleaseUTF32String(lp, string, length);
}