00001 #include <grass/gis.h> 00002 int 00003 G_shift_colors (int shift, struct Colors *colors) 00004 { 00005 colors->shift += (DCELL ) shift; 00006 00007 return 0; 00008 } 00009 00010 int 00011 G_shift_d_colors (DCELL shift, struct Colors *colors) 00012 { 00013 colors->shift += shift; 00014 00015 return 0; 00016 }