* Correct comment describing printbuf_memappend in printbuf.h

git-svn-id: http://svn.metaparadigm.com/svn/json-c/trunk@52 327403b1-1117-474d-bef2-5cb71233fd97
This commit is contained in:
Brent Miller
2009-08-20 06:41:32 +00:00
parent 51658855fb
commit f8663fc16f
2 changed files with 9 additions and 4 deletions

View File

@@ -31,10 +31,12 @@ struct printbuf {
extern struct printbuf*
printbuf_new(void);
/* As an optimization, printbuf_memappend is defined as a macro that
* handles copying data if the buffer is large enough; otherwise it
* invokes printbuf_memappend_real() which performs the heavy lifting
* of realloc()ing the buffer and copying data.
/* As an optimization, printbuf_memappend_fast is defined as a macro
* that handles copying data if the buffer is large enough; otherwise
* it invokes printbuf_memappend_real() which performs the heavy
* lifting of realloc()ing the buffer and copying data.
* Your code should not use printbuf_memappend directly--use
* printbuf_memappend_fast instead.
*/
extern int
printbuf_memappend(struct printbuf *p, const char *buf, int size);