summaryrefslogtreecommitdiff
path: root/pjlib/include/pj/string.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-07-03 14:18:17 +0000
committerBenny Prijono <bennylp@teluu.com>2006-07-03 14:18:17 +0000
commit63147d55f091ec8ba1a5b57cb04b421938ec9fde (patch)
tree472a6675304f57a815f6f0380ab631373be766a6 /pjlib/include/pj/string.h
parent589260d10d6915e1f55724099508fc742012b838 (diff)
Fixed minor bug in pool_caching.c that prevent pool from being reused if the capacity has changed when the pool is released
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@581 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/include/pj/string.h')
-rw-r--r--pjlib/include/pj/string.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/pjlib/include/pj/string.h b/pjlib/include/pj/string.h
index 5c2cc251..7c513e7c 100644
--- a/pjlib/include/pj/string.h
+++ b/pjlib/include/pj/string.h
@@ -543,6 +543,19 @@ PJ_DECL(int) pj_utoa(unsigned long val, char *buf);
*/
PJ_DECL(int) pj_utoa_pad( unsigned long val, char *buf, int min_dig, int pad);
+
+/**
+ * Fill the memory location with zero.
+ *
+ * @param dst The destination buffer.
+ * @param size The number of bytes.
+ */
+PJ_INLINE(void) pj_bzero(void *dst, pj_size_t size)
+{
+ bzero(dst, size);
+}
+
+
/**
* Fill the memory location with value.
*