Changeset 609 for branches/GNU/src/binutils/libiberty/bzero.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/libiberty/bzero.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 3 3 4 4 /* 5 NAME6 bzero -- zero the contents of a specified memory region7 5 8 SYNOPSIS 9 void bzero (char *to, int count) 6 @deftypefn Supplemental void bzero (char *@var{mem}, int @var{count}) 10 7 11 DESCRIPTION 12 Zero COUNT bytes of memory pointed to by TO.8 Zeros @var{count} bytes starting at @var{mem}. Use of this function 9 is deprecated in favor of @code{memset}. 13 10 14 BUGS 15 Significant speed enhancements may be made in some environments 16 by zeroing more than a single byte at a time, or by unrolling the 17 loop. 11 @end deftypefn 18 12 19 13 */ -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.