chiark
/
gitweb
/
~mdw
/
mLib
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Use `libtool' to generate a shared library.
[mLib]
/
dstr.c
diff --git
a/dstr.c
b/dstr.c
index 82f0805e87dbb584b28a80920191be4c5424b879..7c03a3c5496346e77d92cce48bfbfb9065d4b04e 100644
(file)
--- a/
dstr.c
+++ b/
dstr.c
@@
-1,6
+1,6
@@
/* -*-c-*-
*
/* -*-c-*-
*
- * $Id: dstr.c,v 1.1
0 1999/10/04 21:44:47
mdw Exp $
+ * $Id: dstr.c,v 1.1
1 1999/10/28 22:05:29
mdw Exp $
*
* Handle dynamically growing strings
*
*
* Handle dynamically growing strings
*
@@
-30,6
+30,9
@@
/*----- Revision history --------------------------------------------------*
*
* $Log: dstr.c,v $
/*----- Revision history --------------------------------------------------*
*
* $Log: dstr.c,v $
+ * Revision 1.11 1999/10/28 22:05:29 mdw
+ * Modify and debug allocation routines.
+ *
* Revision 1.10 1999/10/04 21:44:47 mdw
* Move `dstr_putf' and `dstr_vputf' into a separate source file.
*
* Revision 1.10 1999/10/04 21:44:47 mdw
* Move `dstr_putf' and `dstr_vputf' into a separate source file.
*
@@
-80,7
+83,7
@@
* memory-hungry, but efficient.
*/
* memory-hungry, but efficient.
*/
-#define DSTR_INITSZ
256
/* Initial buffer size */
+#define DSTR_INITSZ
64
/* Initial buffer size */
/*----- Main code ---------------------------------------------------------*/
/*----- Main code ---------------------------------------------------------*/
@@
-142,10
+145,9
@@
void dstr_ensure(dstr *d, size_t sz)
nsz = d->sz;
nsz = d->sz;
- if (nsz == 0 && rq < DSTR_INITSZ)
- nsz = DSTR_INITSZ;
- else
- do nsz <<= 1; while (nsz < rq);
+ if (nsz == 0)
+ nsz = (DSTR_INITSZ >> 1);
+ do nsz <<= 1; while (nsz < rq);
if (d->buf)
d->buf = xrealloc(d->buf, nsz);
if (d->buf)
d->buf = xrealloc(d->buf, nsz);
@@
-229,8
+231,8
@@
void dstr_putm(dstr *d, const void *p, size_t sz) { DPUTM(d, p, sz); }
void dstr_tidy(dstr *d)
{
void dstr_tidy(dstr *d)
{
- dstr_putz(d);
d->buf = xrealloc(d->buf, d->len + 1);
d->buf = xrealloc(d->buf, d->len + 1);
+ d->buf[d->len] = 0;
d->sz = d->len + 1;
}
d->sz = d->len + 1;
}
@@
-256,13
+258,6
@@
int dstr_putline(dstr *d, FILE *fp)
for (;;) {
for (;;) {
- /* --- Make sure there's some buffer space --- */
-
- if (!left) {
- dstr_ensure(d, 1);
- left = d->sz - off;
- }
-
/* --- Read the next byte --- */
ch = getc(fp);
/* --- Read the next byte --- */
ch = getc(fp);
@@
-272,6
+267,13
@@
int dstr_putline(dstr *d, FILE *fp)
if (ch == EOF && !rd)
return (EOF);
if (ch == EOF && !rd)
return (EOF);
+ /* --- Make sure there's some buffer space --- */
+
+ if (!left) {
+ dstr_ensure(d, 1);
+ left = d->sz - off;
+ }
+
/* --- End-of-file or newline ends the loop --- */
if (ch == EOF || ch == '\n') {
/* --- End-of-file or newline ends the loop --- */
if (ch == EOF || ch == '\n') {