GRASS Programmer's Manual  6.4.2(2012)
db/dbmi_base/zero.c
Go to the documentation of this file.
00001 #include <grass/dbmi.h>
00002 
00009 void db_zero(void *s, int n)
00010 {
00011     char *c = (char *)s;
00012 
00013     while (n-- > 0)
00014         *c++ = 0;
00015 }
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines