GRASS Programmer's Manual
6.4.2(2012)
|
00001 /* 00002 * Close down the graphics processing. This gets called only at driver 00003 * termination time. 00004 */ 00005 00006 #include "psdriver.h" 00007 00008 void PS_Graph_close(void) 00009 { 00010 if (!no_trailer) { 00011 output("%%%%BeginTrailer\n"); 00012 output("END\n"); 00013 output("%%%%EndTrailer\n"); 00014 } 00015 00016 fclose(outfp); 00017 }