Changeset 581 for pjproject/trunk/pjlib/include/pj/string.h
- Timestamp:
- Jul 3, 2006 2:18:17 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/include/pj/string.h
r514 r581 544 544 PJ_DECL(int) pj_utoa_pad( unsigned long val, char *buf, int min_dig, int pad); 545 545 546 547 /** 548 * Fill the memory location with zero. 549 * 550 * @param dst The destination buffer. 551 * @param size The number of bytes. 552 */ 553 PJ_INLINE(void) pj_bzero(void *dst, pj_size_t size) 554 { 555 bzero(dst, size); 556 } 557 558 546 559 /** 547 560 * Fill the memory location with value.
Note: See TracChangeset
for help on using the changeset viewer.