home *** CD-ROM | disk | FTP | other *** search
/ Mega CD-ROM 1 / megacd_rom_1.zip / megacd_rom_1 / GNUISH / SWALIB0.ZIP / SW_RESP.C < prev    next >
C/C++ Source or Header  |  1990-09-10  |  2KB  |  54 lines

  1. /* sw_resp.c - manipulate commandlines and respondfiles for swaplib.
  2.    Copyright (C) 1990 by Thorsten Ohl, td12@ddagsi3.bitnet
  3.  
  4.    This file is part of SWAPLIB (the library), a library for efficient
  5.    execution of child processes under MS-DOS.
  6.  
  7.    The library is free software; you can redistribute it and/or modify
  8.    it under the terms of the GNU General Public License as published by
  9.    the Free Software Foundation; either version 1, or (at your option)
  10.    any later version.
  11.  
  12.    The library is distributed in the hope that it will be useful,
  13.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.    GNU General Public License for more details.
  16.  
  17.    You should have received a copy of the GNU General Public License
  18.    along with the library; if not, write to the Free Software
  19.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21.    $Header: e:/gnu/swaplib/RCS/sw_resp.c'v 0.9 90/09/09 21:44:09 tho Stable $
  22.  */
  23.  
  24. #include <stdio.h>
  25.  
  26. #include "swaplib.h"
  27.  
  28. static struct swap_respondfile_action default_respondfile_actions[] =
  29. {
  30.   { "cl",    _swap_build_cl_environment },
  31.   { "fl",    _swap_build_fl_environment },
  32.   { "masm",    _swap_build_masm_environment },
  33.   { "link",    _swap_build_link_respond_file },
  34.   { "lib",    _swap_build_lib_respond_file },
  35.   { "pkzip",    _swap_build_zip_respond_file },
  36.   { "pkunzip",    _swap_build_zip_respond_file },
  37.   { NULL,    NULL }
  38. };
  39.  
  40. struct swap_respondfile_action *
  41. swap_set_respondfile_actions (void)
  42. {
  43.   return default_respondfile_actions;
  44. }
  45.  
  46.  
  47. /* 
  48.  * Local Variables:
  49.  * mode:C
  50.  * ChangeLog:ChangeLog
  51.  * compile-command:make
  52.  * End:
  53.  */
  54.