bzero.html 459 B

1234567891011121314151617181920212223242526
  1. <html>
  2. <head>
  3. <title>bzero</title>
  4. <body bgcolor=#ffffff>
  5. <h2 align=center>bzero</h2>
  6. <h4 align=center>OS/161 Reference Manual</h4>
  7. <h3>Name</h3>
  8. bzero - zero out memory
  9. <h3>Library</h3>
  10. Standard C Library (libc, -lc)
  11. <h3>Synopsis</h3>
  12. #include &lt;string.h&gt;<br>
  13. <br>
  14. void<br>
  15. bzero(void *<em>buf</em>, size_t <em>len</em>);
  16. <h3>Description</h3>
  17. The region of memory pointed to by <em>buf</em>, of length
  18. <em>len</em>, is zeroed out.
  19. </body>
  20. </html>