[Top] [Prev] [Next] [Bottom] [Contents]

SaGetCurrentAnchString

Gets the next Anchor string in the stream. The return data is malloc'd and must be free'd.

Synopsis

#include "SaRnHtml.h"
char* SaGetCurrentAnchString SUTPROTO((char* inptr));

Arguments

The pointer to a string to examine.

Return Values

The a pointer to the next Anchor string in the stream. A NULL indicates that no Anchor string has been found. The return value is malloc'd data.

Description

Gets the next Anchor string in the stream. The return data is malloc'd and must be free'd.

Example

char* str;
char* anch

str = SaGetCurrentPtr();
if(str)
{
	anch = SaGetCurrentAnchString(str);
	if(anch != NULL)
	{
		/*** process anchor string ***/
		free(anch);
	}
}

See Also



[Top] [Prev] [Next] [Bottom] [Contents]

info@bluestone.com
Copyright © 1997, Bluestone. All rights reserved.