Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
a176ef2c
Commit
a176ef2c
authored
Mar 13, 2002
by
Niels Möller
Browse files
(string_buffer_putc): New constant
BUFFER_INCREMENT. Code still not used. Rev: src/string_buffer.c:1.8
parent
d4eb4eaa
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/string_buffer.c
View file @
a176ef2c
...
...
@@ -87,11 +87,12 @@ string_buffer_grow(struct string_buffer *buffer, UINT32 increment)
}
#if 0
#define BUFFER_INCREMENT 50
void
string_buffer_putc(struct string_buffer *buffer, UINT8 c)
{
if (!buffer->left)
string_buffer_grow(buffer,
buffer->increment
);
string_buffer_grow(buffer,
BUFFER_INCREMENT
);
assert(buffer->left);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment