このページを編集する際は、編集に関する方針に従ってください。
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. */
更新日 | 更新者 | 更新内容 |