Main Page   Compound List   File List   Compound Members   File Members  

zsend-zwrite.vtc

Go to the documentation of this file.
00001 /* -*- C -*- */
00021 func zsend_zwrite(zout) [args, pipe]
00022 {
00023   args = zout_std_args(zout);
00024   pipe = popen("zwrite -q -n" + args + ">/dev/null", "w");
00025   if (!pipe)
00026   {
00027     output("Pipe failed.\n");
00028     return;
00029   }
00030   fwrite(pipe, zout->body);
00031   if (fclose(pipe) != 0)
00032     printf("Error sending message\n");
00033 }

Generated at Mon Aug 13 16:45:52 2001 for dzm-vtc by doxygen1.2.8.1 written by Dimitri van Heesch, © 1997-2001