[Prev] [Next] [Top] [Bottom] [Contents] (57 out of 193)

SaHtmlTitle

Prints an HTML title to an HTML stream.

Synopsis

#include "SaRnHtml.h"

int SaHtmlTitle(

char* title);

Arguments

title
A string specifying the title. This string is converted to an HTML-compatible string.

Return Values

Returns an integer with a value of 0.

Description

Prints an HTML title to an HTML stream. If title is NULL, an empty string is used as the title.

Example

The code:

SaHtmlTitle("The Recipe Book Store");
will write:

<TITLE>The Recipe Book Store</TITLE>
to the output stream.

See Also


[Prev] [Next] [Top] [Bottom] [Contents] (57 out of 193)