MLPutInteger8List (C Function)

MLPutInteger8List has been replaced by WSPutInteger8List.

int MLPutInteger8List( ( MLINK l , const unsigned char * a , int n )

puts a list of n 8-bit integers starting from location a to the MathLink connection specified by l.

Details

  • MLPutInteger8List() returns 0 in the event of an error, and a nonzero value if the function succeeds.
  • Use MLError() to retrieve the error code if MLPutInteger8List() fails.
  • MLPutInteger8List() is declared in the MathLink header file mathlink.h.

Examples

Basic Examples  (1)

#include "mathlink.h"

/* A function to send a one-dimensional list of 8-bit integers to a link */

void f(MLINK l)
{
    unsigned char list[10];
    int i;

    for(i = 0; i < 10; i++)
        list[i] = i;

    if(! MLPutInteger8List(l, (unsigned char *)list, 10))
    { /* Unable to send the list to the link */ }
}