/[gcl]/gcl/o/bcopy.c
ViewVC logotype

Diff of /gcl/o/bcopy.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.1.1 by wfs, Mon Dec 6 22:44:10 1999 UTC revision 1.2 by camm, Sat Jul 20 07:10:55 2002 UTC
# Line 1  Line 1 
1  void  void
2  bcopy(s1,s2,n)  bcopy(const void *s1, void *s2, size_t n)
 char *s1,*s2;  
 int n;  
3  { while (n-- > 0)  { while (n-- > 0)
4      *s2++ = *s1++;      *s2++ = *s1++;
5  }  }

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26