GRASS Programmer's Manual  6.4.2(2012)
driver/Graph.c
Go to the documentation of this file.
00001 #include "driver.h"
00002 #include "driverlib.h"
00003 
00004 int COM_Graph_set(int argc, char **argv)
00005 {
00006     if (driver->Graph_set)
00007         return (*driver->Graph_set) (argc, argv);
00008     return 0;
00009 }
00010 
00011 void COM_Graph_close(void)
00012 {
00013     if (driver->Graph_close)
00014         (*driver->Graph_close) ();
00015 }
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines