MLDestroyMark (C Function)

MLDestroyMark has been replaced by WSDestroyMark.

void MLDestroyMark(MLINK link,MLMARK mark)

destroys the specified mark on a link.

Details

  • Calling MLDestroyMark() releases memory associated with the storage of expressions recorded after the mark.
  • MLDestroyMark() is declared in the MathLink header file mathlink.h.

Examples

Basic Examples  (1)

#include "mathlink.h"

/* create a mark in a link, read some data, then back up */

void f(MLINK lp)
{
    MLMARK mark;

    mark = MLCreateMark(lp);
    if(mark == (MLMARK)0)
        { /* mark creation failed */ }

    /* read data from the link */

    MLSeekToMark(lp, mark, 0);

    MLDestroyMark(lp, mark);
}