WSReleaseDomainNameList (C 関数)

void WSReleaseDomainNameList(WSENV env,char **l,int n)

WSGetDomainNameList()によって割り当てられ,長さ n のリスト l に保存されるメモリを解放する.

詳細

  • WSReleaseDomainNameList()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (1)

#include "wstp.h"

/* A function that reads the domain names available on a machine */

void f(WSENV env)
{
    char **theList = NULL;
    char *tmp;
    unsigned long length;

    theList = WSGetDomainNameList(env, &length);

    if(length > 0 && theList != (char **)0)
    {
        while((tmp = *theList++) != (char *)0)
        {
            /* ... */
        }

        WSReleaseDomainNameList(env, theList, length);
    }
}