home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / compat / bsd / bzero.txh < prev    next >
Encoding:
Text File  |  1995-07-10  |  343 b   |  25 lines

  1. @node bzero, memory
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <string.h>
  6.  
  7. void bzero(void *pointer, int length);
  8. @end example
  9.  
  10. @subheading Description
  11.  
  12. The data at @var{pointer} is filled with @var{length} zeros. 
  13.  
  14. @subheading Return Value
  15.  
  16. None.
  17.  
  18. @subheading Example
  19.  
  20. @example
  21. char foo[100];
  22. bzero(foo,100);
  23. @end example
  24.  
  25.