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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [binutils-2.18.50/] [libiberty/] [basename.c] - Diff between revs 156 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 156 Rev 816
/* Return the basename of a pathname.
/* Return the basename of a pathname.
   This file is in the public domain. */
   This file is in the public domain. */
 
 
/*
/*
 
 
@deftypefn Supplemental char* basename (const char *@var{name})
@deftypefn Supplemental char* basename (const char *@var{name})
 
 
Returns a pointer to the last component of pathname @var{name}.
Returns a pointer to the last component of pathname @var{name}.
Behavior is undefined if the pathname ends in a directory separator.
Behavior is undefined if the pathname ends in a directory separator.
 
 
@end deftypefn
@end deftypefn
 
 
*/
*/
 
 
#ifdef HAVE_CONFIG_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#include "config.h"
#endif
#endif
#include "ansidecl.h"
#include "ansidecl.h"
#include "libiberty.h"
#include "libiberty.h"
#include "safe-ctype.h"
#include "safe-ctype.h"
 
 
#ifndef DIR_SEPARATOR
#ifndef DIR_SEPARATOR
#define DIR_SEPARATOR '/'
#define DIR_SEPARATOR '/'
#endif
#endif
 
 
#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \
#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \
  defined (__OS2__)
  defined (__OS2__)
#define HAVE_DOS_BASED_FILE_SYSTEM
#define HAVE_DOS_BASED_FILE_SYSTEM
#ifndef DIR_SEPARATOR_2 
#ifndef DIR_SEPARATOR_2 
#define DIR_SEPARATOR_2 '\\'
#define DIR_SEPARATOR_2 '\\'
#endif
#endif
#endif
#endif
 
 
/* Define IS_DIR_SEPARATOR.  */
/* Define IS_DIR_SEPARATOR.  */
#ifndef DIR_SEPARATOR_2
#ifndef DIR_SEPARATOR_2
# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
#else /* DIR_SEPARATOR_2 */
#else /* DIR_SEPARATOR_2 */
# define IS_DIR_SEPARATOR(ch) \
# define IS_DIR_SEPARATOR(ch) \
        (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
        (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
#endif /* DIR_SEPARATOR_2 */
#endif /* DIR_SEPARATOR_2 */
 
 
char *
char *
basename (const char *name)
basename (const char *name)
{
{
  const char *base;
  const char *base;
 
 
#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
  /* Skip over the disk name in MSDOS pathnames. */
  /* Skip over the disk name in MSDOS pathnames. */
  if (ISALPHA (name[0]) && name[1] == ':')
  if (ISALPHA (name[0]) && name[1] == ':')
    name += 2;
    name += 2;
#endif
#endif
 
 
  for (base = name; *name; name++)
  for (base = name; *name; name++)
    {
    {
      if (IS_DIR_SEPARATOR (*name))
      if (IS_DIR_SEPARATOR (*name))
        {
        {
          base = name + 1;
          base = name + 1;
        }
        }
    }
    }
  return (char *) base;
  return (char *) base;
}
}
 
 
 
 

powered by: WebSVN 2.1.0

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