~ubuntu-branches/ubuntu/quantal/gclcvs/quantal

« back to all changes in this revision

Viewing changes to binutils/libiberty/bzero.c

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2004-06-24 15:13:46 UTC
  • Revision ID: james.westby@ubuntu.com-20040624151346-xh0xaaktyyp7aorc
Tags: 2.7.0-26
C_GC_OFFSET is 2 on m68k-linux

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Portable version of bzero for systems without it.
 
2
   This function is in the public domain.  */
 
3
 
 
4
/*
 
5
 
 
6
@deftypefn Supplemental void bzero (char *@var{mem}, int @var{count})
 
7
 
 
8
Zeros @var{count} bytes starting at @var{mem}.  Use of this function
 
9
is deprecated in favor of @code{memset}.
 
10
 
 
11
@end deftypefn
 
12
 
 
13
*/
 
14
 
 
15
 
 
16
void
 
17
bzero (to, count)
 
18
  char *to;
 
19
  int count;
 
20
{
 
21
  while (count-- > 0)
 
22
    {
 
23
      *to++ = 0;
 
24
    }
 
25
}