このページを編集する際は、編集に関する方針に従ってください。

概要

引数

実装

void
initStringInfo(StringInfo str)
{
	int			size = 256;		/* initial default buffer size */
	str->data = (char *) palloc(size);
	str->maxlen = size;
	str->len = 0;
	str->data[0] = '\0';
	str->cursor = 0;
}

呼出元

備考

/*
* initStringInfo
*
* Initialize a StringInfoData struct (with previously undefined contents)
* to describe an empty string.
*/

履歴

コメント



トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS