OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [tags/] [gdb/] [gdb-6.8/] [gdb-6.8.openrisc-2.1/] [readline/] [examples/] [rl.c] - Diff between revs 24 and 33

Only display areas with differences | Details | Blame | View Log

Rev 24 Rev 33
/*
/*
 * rl - command-line interface to read a line from the standard input
 * rl - command-line interface to read a line from the standard input
 *      (or another fd) using readline.
 *      (or another fd) using readline.
 *
 *
 * usage: rl [-p prompt] [-u unit] [-d default] [-n nchars]
 * usage: rl [-p prompt] [-u unit] [-d default] [-n nchars]
 */
 */
 
 
/* Copyright (C) 1987-2002 Free Software Foundation, Inc.
/* Copyright (C) 1987-2002 Free Software Foundation, Inc.
 
 
   This file is part of the GNU Readline Library, a library for
   This file is part of the GNU Readline Library, a library for
   reading lines of text with interactive input and history editing.
   reading lines of text with interactive input and history editing.
 
 
   The GNU Readline Library is free software; you can redistribute it
   The GNU Readline Library is free software; you can redistribute it
   and/or modify it under the terms of the GNU General Public License
   and/or modify it under the terms of the GNU General Public License
   as published by the Free Software Foundation; either version 2, or
   as published by the Free Software Foundation; either version 2, or
   (at your option) any later version.
   (at your option) any later version.
 
 
   The GNU Readline Library is distributed in the hope that it will be
   The GNU Readline Library is distributed in the hope that it will be
   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
 
 
   The GNU General Public License is often shipped with GNU software, and
   The GNU General Public License is often shipped with GNU software, and
   is generally kept in a file called COPYING or LICENSE.  If you do not
   is generally kept in a file called COPYING or LICENSE.  If you do not
   have a copy of the license, write to the Free Software Foundation,
   have a copy of the license, write to the Free Software Foundation,
   59 Temple Place, Suite 330, Boston, MA 02111 USA. */
   59 Temple Place, Suite 330, Boston, MA 02111 USA. */
 
 
#if defined (HAVE_CONFIG_H)
#if defined (HAVE_CONFIG_H)
#  include <config.h>
#  include <config.h>
#endif
#endif
 
 
#include <stdio.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/types.h>
 
 
#ifdef HAVE_STDLIB_H
#ifdef HAVE_STDLIB_H
#  include <stdlib.h>
#  include <stdlib.h>
#else 
#else 
extern void exit();
extern void exit();
#endif
#endif
 
 
#if defined (READLINE_LIBRARY)
#if defined (READLINE_LIBRARY)
#  include "posixstat.h"
#  include "posixstat.h"
#  include "readline.h"
#  include "readline.h"
#  include "history.h"
#  include "history.h"
#else
#else
#  include <sys/stat.h>
#  include <sys/stat.h>
#  include <readline/readline.h>
#  include <readline/readline.h>
#  include <readline/history.h>
#  include <readline/history.h>
#endif
#endif
 
 
extern int optind;
extern int optind;
extern char *optarg;
extern char *optarg;
 
 
#if !defined (strchr) && !defined (__STDC__)
#if !defined (strchr) && !defined (__STDC__)
extern char *strrchr();
extern char *strrchr();
#endif
#endif
 
 
static char *progname;
static char *progname;
static char *deftext;
static char *deftext;
 
 
static int
static int
set_deftext ()
set_deftext ()
{
{
  if (deftext)
  if (deftext)
    {
    {
      rl_insert_text (deftext);
      rl_insert_text (deftext);
      deftext = (char *)NULL;
      deftext = (char *)NULL;
      rl_startup_hook = (rl_hook_func_t *)NULL;
      rl_startup_hook = (rl_hook_func_t *)NULL;
    }
    }
  return 0;
  return 0;
}
}
 
 
static void
static void
usage()
usage()
{
{
  fprintf (stderr, "%s: usage: %s [-p prompt] [-u unit] [-d default] [-n nchars]\n",
  fprintf (stderr, "%s: usage: %s [-p prompt] [-u unit] [-d default] [-n nchars]\n",
                progname, progname);
                progname, progname);
}
}
 
 
int
int
main (argc, argv)
main (argc, argv)
     int argc;
     int argc;
     char **argv;
     char **argv;
{
{
  char *temp, *prompt;
  char *temp, *prompt;
  struct stat sb;
  struct stat sb;
  int opt, fd, nch;
  int opt, fd, nch;
  FILE *ifp;
  FILE *ifp;
 
 
  progname = strrchr(argv[0], '/');
  progname = strrchr(argv[0], '/');
  if (progname == 0)
  if (progname == 0)
    progname = argv[0];
    progname = argv[0];
  else
  else
    progname++;
    progname++;
 
 
  /* defaults */
  /* defaults */
  prompt = "readline$ ";
  prompt = "readline$ ";
  fd = nch = 0;
  fd = nch = 0;
  deftext = (char *)0;
  deftext = (char *)0;
 
 
  while ((opt = getopt(argc, argv, "p:u:d:n:")) != EOF)
  while ((opt = getopt(argc, argv, "p:u:d:n:")) != EOF)
    {
    {
      switch (opt)
      switch (opt)
        {
        {
        case 'p':
        case 'p':
          prompt = optarg;
          prompt = optarg;
          break;
          break;
        case 'u':
        case 'u':
          fd = atoi(optarg);
          fd = atoi(optarg);
          if (fd < 0)
          if (fd < 0)
            {
            {
              fprintf (stderr, "%s: bad file descriptor `%s'\n", progname, optarg);
              fprintf (stderr, "%s: bad file descriptor `%s'\n", progname, optarg);
              exit (2);
              exit (2);
            }
            }
          break;
          break;
        case 'd':
        case 'd':
          deftext = optarg;
          deftext = optarg;
          break;
          break;
        case 'n':
        case 'n':
          nch = atoi(optarg);
          nch = atoi(optarg);
          if (nch < 0)
          if (nch < 0)
            {
            {
              fprintf (stderr, "%s: bad value for -n: `%s'\n", progname, optarg);
              fprintf (stderr, "%s: bad value for -n: `%s'\n", progname, optarg);
              exit (2);
              exit (2);
            }
            }
          break;
          break;
        default:
        default:
          usage ();
          usage ();
          exit (2);
          exit (2);
        }
        }
    }
    }
 
 
  if (fd != 0)
  if (fd != 0)
    {
    {
      if (fstat (fd, &sb) < 0)
      if (fstat (fd, &sb) < 0)
        {
        {
          fprintf (stderr, "%s: %d: bad file descriptor\n", progname, fd);
          fprintf (stderr, "%s: %d: bad file descriptor\n", progname, fd);
          exit (1);
          exit (1);
        }
        }
      ifp = fdopen (fd, "r");
      ifp = fdopen (fd, "r");
      rl_instream = ifp;
      rl_instream = ifp;
    }
    }
 
 
  if (deftext && *deftext)
  if (deftext && *deftext)
    rl_startup_hook = set_deftext;
    rl_startup_hook = set_deftext;
 
 
  if (nch > 0)
  if (nch > 0)
    rl_num_chars_to_read = nch;
    rl_num_chars_to_read = nch;
 
 
  temp = readline (prompt);
  temp = readline (prompt);
 
 
  /* Test for EOF. */
  /* Test for EOF. */
  if (temp == 0)
  if (temp == 0)
    exit (1);
    exit (1);
 
 
  printf ("%s\n", temp);
  printf ("%s\n", temp);
  exit (0);
  exit (0);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.