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

  1. /* sw_msc.c - commandlines for Microsoft compilers.
  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_msc.c'v 0.9 90/09/09 21:44:04 tho Stable $
  22.  */
  23.  
  24. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include <string.h>
  27.  
  28. #include "swaplib.h"
  29.  
  30. extern void *xmalloc (size_t size);
  31.  
  32.  
  33. int
  34. _swap_build_msc_environment (char *prefix, char **argv, char **envv)
  35. {
  36.   char **av;
  37.   char *p;
  38.   char *buf;
  39.   int len;
  40.  
  41.   /* How long are we? */
  42.  
  43.   len = strlen (prefix) + 1;
  44.   for (av = argv + 1; *av; av++)
  45.     len += strlen (*av) + 1;
  46.  
  47.   p = buf = (char *) xmalloc (len);
  48.  
  49.   /* paste arguments together */
  50.  
  51.   strcpy (p, prefix);
  52.   p += strlen (prefix);
  53.  
  54.   for (av = argv + 1; *av; av++)
  55.     {
  56.       *p++ = ' ';
  57.       strcpy (p, *av);
  58.       p += strlen (*av);
  59.     }
  60.  
  61.   return _swap_format_msdos_environment (NULL, envv, buf, NULL);
  62. }
  63.  
  64. /* 
  65.  * Local Variables:
  66.  * mode:C
  67.  * ChangeLog:ChangeLog
  68.  * compile-command:make
  69.  * End:
  70.  */
  71.