GRASS Programmer's Manual  6.5.svn(2012)-r51648
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines
gis/zero.c
Go to the documentation of this file.
00001 
00017 #include <string.h>
00018 #include <grass/gis.h>
00019 
00020 
00029 int G_zero(void *buf, int i)
00030 {
00031     memset(buf, 0, i);
00032 
00033     return 0;
00034 }