WSPutInteger8List (C 関数)
int WSPutInteger8List(( WSLINK l , const unsigned char * a , int n )
位置 a から始まる n 個の8ビット整数のリストを,l で指定されたWSTP接続に置く.
例題
例 (1)
#include "wstp.h"
/* A function to send a one-dimensional list of 8-bit integers to a link */
void f(WSLINK l)
{
unsigned char list[10];
int i;
for(i = 0; i < 10; i++)
list[i] = i;
if(! WSPutInteger8List(l, (unsigned char *)list, 10))
{ /* Unable to send the list to the link */ }
}