00001 /* Return the name-within-directory of a file name. 00002 Copyright (C) 1996,97,98,2002 Free Software Foundation, Inc. 00003 This file is part of the GNU C Library. 00004 00005 The GNU C Library is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU Lesser General Public 00007 License as published by the Free Software Foundation; either 00008 version 2.1 of the License, or (at your option) any later version. 00009 00010 The GNU C Library is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 Lesser General Public License for more details. 00014 00015 You should have received a copy of the GNU Lesser General Public 00016 License along with the GNU C Library; if not, write to the Free 00017 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 00018 02111-1307 USA. */ 00019 00020 /* 00021 * $Id: basename.c,v 1.1 2005-02-08 15:37:21 gerkey Exp $ 00022 * 00023 * taken from glibc, modified slightly for standalone compilation, and used as 00024 * a fallback implementation when basename() is not available. - BPG 00025 */ 00026 00027 #include <string.h> 00028 00029 #ifndef _LIBC 00030 /* We cannot generally use the name `basename' since XPG defines an unusable 00031 variant of the function but we cannot use it. */ 00032 # define basename gnu_basename 00033 #endif 00034 00035 const char * basename( const char *filename ) 00036 { 00037 char *p = strrchr (filename, '/'); 00038 return p ? p + 1 : (char *) filename; 00039 } 00040 00041 #ifdef _LIBC 00042 libc_hidden_def (basename) 00043 #endif