00001 /* 00002 * Copyright (C) 2007 Michael Brown <mbrown@fensystems.co.uk>. 00003 * 00004 * This program is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU General Public License as 00006 * published by the Free Software Foundation; either version 2 of the 00007 * License, or any later version. 00008 * 00009 * This program is distributed in the hope that it will be useful, but 00010 * WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License 00015 * along with this program; if not, write to the Free Software 00016 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00017 */ 00018 00019 FILE_LICENCE ( GPL2_OR_LATER ); 00020 00021 /** 00022 * @file 00023 * 00024 * Get base name of path 00025 * 00026 */ 00027 00028 #include <string.h> 00029 #include <libgen.h> 00030 00031 /** 00032 * Return base name from path 00033 * 00034 * @v path Full path 00035 * @ret basename Base name 00036 */ 00037 char * basename ( char *path ) { 00038 char *basename; 00039 00040 basename = strrchr ( path, '/' ); 00041 return ( basename ? ( basename + 1 ) : path ); 00042 } 00043 00044 /** 00045 * Return directory name from path 00046 * 00047 * @v path Full path 00048 * @ret dirname Directory name 00049 * 00050 * Note that this function may modify its argument. 00051 */ 00052 char * dirname ( char *path ) { 00053 char *separator; 00054 00055 separator = strrchr ( path, '/' ); 00056 if ( separator == path ) { 00057 return "/"; 00058 } else if ( separator ) { 00059 *separator = 0; 00060 return path; 00061 } else { 00062 return "."; 00063 } 00064 }
1.5.7.1