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/] [rlcat.c] - Diff between revs 24 and 33

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

Rev 24 Rev 33
/*
/*
 * rlcat - cat(1) using readline
 * rlcat - cat(1) using readline
 *
 *
 * usage: rlcat
 * usage: rlcat
 */
 */
 
 
/* 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
 
 
#ifdef HAVE_UNISTD_H
#ifdef HAVE_UNISTD_H
#  include <unistd.h>
#  include <unistd.h>
#endif
#endif
 
 
#include <sys/types.h>
#include <sys/types.h>
#include "posixstat.h"
#include "posixstat.h"
 
 
#include <stdio.h>
#include <stdio.h>
#include <ctype.h>
#include <ctype.h>
#include <string.h>
#include <string.h>
#include <errno.h>
#include <errno.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
 
 
#ifndef errno
#ifndef errno
extern int errno;
extern int errno;
#endif
#endif
 
 
#if defined (READLINE_LIBRARY)
#if defined (READLINE_LIBRARY)
#  include "readline.h"
#  include "readline.h"
#  include "history.h"
#  include "history.h"
#else
#else
#  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;
 
 
static int stdcat();
static int stdcat();
 
 
static char *progname;
static char *progname;
static int vflag;
static int vflag;
 
 
static void
static void
usage()
usage()
{
{
  fprintf (stderr, "%s: usage: %s [-vEVN] [filename]\n", progname, progname);
  fprintf (stderr, "%s: usage: %s [-vEVN] [filename]\n", progname, progname);
}
}
 
 
int
int
main (argc, argv)
main (argc, argv)
     int argc;
     int argc;
     char **argv;
     char **argv;
{
{
  char *temp;
  char *temp;
  int opt, Vflag, Nflag;
  int opt, Vflag, Nflag;
 
 
  progname = strrchr(argv[0], '/');
  progname = strrchr(argv[0], '/');
  if (progname == 0)
  if (progname == 0)
    progname = argv[0];
    progname = argv[0];
  else
  else
    progname++;
    progname++;
 
 
  vflag = Vflag = Nflag = 0;
  vflag = Vflag = Nflag = 0;
  while ((opt = getopt(argc, argv, "vEVN")) != EOF)
  while ((opt = getopt(argc, argv, "vEVN")) != EOF)
    {
    {
      switch (opt)
      switch (opt)
        {
        {
        case 'v':
        case 'v':
          vflag = 1;
          vflag = 1;
          break;
          break;
        case 'V':
        case 'V':
          Vflag = 1;
          Vflag = 1;
          break;
          break;
        case 'E':
        case 'E':
          Vflag = 0;
          Vflag = 0;
          break;
          break;
        case 'N':
        case 'N':
          Nflag = 1;
          Nflag = 1;
          break;
          break;
        default:
        default:
          usage ();
          usage ();
          exit (2);
          exit (2);
        }
        }
    }
    }
 
 
  argc -= optind;
  argc -= optind;
  argv += optind;
  argv += optind;
 
 
  if (isatty(0) == 0 || argc || Nflag)
  if (isatty(0) == 0 || argc || Nflag)
    return stdcat(argc, argv);
    return stdcat(argc, argv);
 
 
  rl_variable_bind ("editing-mode", Vflag ? "vi" : "emacs");
  rl_variable_bind ("editing-mode", Vflag ? "vi" : "emacs");
  while (temp = readline (""))
  while (temp = readline (""))
    {
    {
      if (*temp)
      if (*temp)
        add_history (temp);
        add_history (temp);
      printf ("%s\n", temp);
      printf ("%s\n", temp);
    }
    }
 
 
  return (ferror (stdout));
  return (ferror (stdout));
}
}
 
 
static int
static int
fcopy(fp)
fcopy(fp)
     FILE *fp;
     FILE *fp;
{
{
  int c;
  int c;
  char *x;
  char *x;
 
 
  while ((c = getc(fp)) != EOF)
  while ((c = getc(fp)) != EOF)
    {
    {
      if (vflag && isascii ((unsigned char)c) && isprint((unsigned char)c) == 0)
      if (vflag && isascii ((unsigned char)c) && isprint((unsigned char)c) == 0)
        {
        {
          x = rl_untranslate_keyseq (c);
          x = rl_untranslate_keyseq (c);
          if (fputs (x, stdout) != 0)
          if (fputs (x, stdout) != 0)
            return 1;
            return 1;
        }
        }
      else if (putchar (c) == EOF)
      else if (putchar (c) == EOF)
        return 1;
        return 1;
    }
    }
  return (ferror (stdout));
  return (ferror (stdout));
}
}
 
 
int
int
stdcat (argc, argv)
stdcat (argc, argv)
     int argc;
     int argc;
     char **argv;
     char **argv;
{
{
  int  i, fd, r;
  int  i, fd, r;
  char *s;
  char *s;
  FILE *fp;
  FILE *fp;
 
 
  if (argc == 0)
  if (argc == 0)
    return (fcopy(stdin));
    return (fcopy(stdin));
 
 
  for (i = 0, r = 1; i < argc; i++)
  for (i = 0, r = 1; i < argc; i++)
    {
    {
      if (*argv[i] == '-' && argv[i][1] == 0)
      if (*argv[i] == '-' && argv[i][1] == 0)
        fp = stdin;
        fp = stdin;
      else
      else
        {
        {
          fp = fopen (argv[i], "r");
          fp = fopen (argv[i], "r");
          if (fp == 0)
          if (fp == 0)
            {
            {
              fprintf (stderr, "%s: %s: cannot open: %s\n", progname, argv[i], strerror(errno));
              fprintf (stderr, "%s: %s: cannot open: %s\n", progname, argv[i], strerror(errno));
              continue;
              continue;
            }
            }
        }
        }
      r = fcopy (fp);
      r = fcopy (fp);
      if (fp != stdin)
      if (fp != stdin)
        fclose(fp);
        fclose(fp);
    }
    }
  return r;
  return r;
}
}
 
 

powered by: WebSVN 2.1.0

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