str: New function ss_realloc().
authorBen Pfaff <blp@cs.stanford.edu>
Tue, 7 Dec 2010 04:46:56 +0000 (20:46 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 20 Mar 2011 16:41:55 +0000 (09:41 -0700)
src/libpspp/str.c
src/libpspp/str.h

index 7b677225b94b218eab09a096d2b0d6c1da23f82e..25e2cfd54872d2b1e232b8673cf8075fb6465bf4 100644 (file)
@@ -341,6 +341,12 @@ ss_alloc_uninit (struct substring *new, size_t cnt)
   new->length = cnt;
 }
 
+void
+ss_realloc (struct substring *ss, size_t size)
+{
+  ss->string = xrealloc (ss->string, size);
+}
+
 /* Makes a pool_alloc_unaligned()'d copy of the contents of OLD
    in POOL, and stores it in NEW. */
 void
index ddfd2f82b77e1e7b83098541636fdb5c5f2facc0..c691f9f292b2194d54093f384b4b7892614b6469 100644 (file)
@@ -85,6 +85,7 @@ struct substring ss_tail (struct substring, size_t);
 struct pool;
 void ss_alloc_substring (struct substring *, struct substring);
 void ss_alloc_uninit (struct substring *, size_t);
+void ss_realloc (struct substring *, size_t);
 void ss_alloc_substring_pool (struct substring *, struct substring,
                               struct pool *);
 void ss_alloc_uninit_pool (struct substring *, size_t, struct pool *);