GRASS Programmer's Manual  6.4.1(2011)
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 }
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines