[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.
#include "SaRnHtml.h"
char* SaGetCurrentAnchString SUTPROTO((char* inptr));
Arguments
The pointer to a string to examine.
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.
Gets the next Anchor string in the stream. The return data is malloc'd and must be free'd.
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.