MLReleaseByteSymbol (C Function)

MLReleaseByteSymbol has been replaced by WSReleaseByteSymbol.

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

disowns memory allocated by MLGetByteSymbol() to store the character string s corresponding to the name of a symbol.

Details

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

Examples

Basic Examples  (1)

#include "mathlink.h"

/* read a symbol from a link and then release the memory to MathLink for deallocation */

void f(MLINK lp)
{
    unsigned char *sym;
    int len;

    if(! MLGetByteSymbol(lp, &sym, &len))
        { /* unable to read a symbol from lp */ }

    /* ... */

    MLReleaseByteSymbol(lp, sym, len);
}