ftp.nice.ch/pub/next/text/tex/teTeX/distrib/sources/teTeX-src-0.4.tar.gz#/teTeX-src-0.4/kpse-2.6/web2c/lib/main.c

This is main.c in view mode; [Download] [Up]

/* main.c -- the usual main program.  */

#include "config.h"


/* ridderbusch.pad@nixdorf.com says this is necessary.  */
#ifdef ATARI_ST
int _stksize = -1L;
#endif


/* The command line is stored under `gargv', since Pascal has usurped `argv' 
   for a procedure.  These variables are referenced from the Pascal, so
   we can't make them static.  */
char **gargv;
int argc;


/* The entry point for all the programs except TeX and Metafont, which
   have more to do.  We just have to set up the command line.  Pascal's
   main block is transformed into the procedure `main_body'.  */

int
main (ac, av)
    int ac;
    char **av;
{
  argc = ac;
  gargv = av;
  kpse_set_progname(av[0]);
  main_body ();
  return EXIT_SUCCESS;
}


/* Read the Nth argument from the command line and return it in BUF as a
   Pascal string, i.e., starting at index 1 and ending with a space.  If
   N is beyond the end of the command line, abort.  */

void
argv P2C(int, n,  string, buf)
{
  if (n >= argc)
    {
      fprintf (stderr, "%s: Not enough arguments.\n", gargv[0]);
      uexit (1);
    }
  strcpy (buf + 1, gargv[n]);
  strcat (buf + 1, " ");
}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.