X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ffilename.h;h=b82a0ac389e678ae66d393a3b7a64eed86a438d1;hb=bbfcd2f1a92c9bdbb8d7d7d0a8a8c6665c316747;hp=1914e9685a17f811305f8a26b3704dcf7e7d3042;hpb=291a9daea4cf8a1f4ab8cc9fa0628f7eac58f1c2;p=gnulib.git diff --git a/lib/filename.h b/lib/filename.h index 1914e9685..b82a0ac38 100644 --- a/lib/filename.h +++ b/lib/filename.h @@ -1,10 +1,10 @@ -/* Pathname support. - Copyright (C) 2001-2004 Free Software Foundation, Inc. +/* Basic filename support macros. + Copyright (C) 2001-2004, 2007-2013 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or modify + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2, or (at your option) - any later version. + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -12,11 +12,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + along with this program. If not, see . */ -#ifndef _PATHNAME_H -#define _PATHNAME_H +#ifndef _FILENAME_H +#define _FILENAME_H #ifdef __cplusplus extern "C" { @@ -30,7 +29,7 @@ extern "C" { IS_PATH_WITH_DIR(P) tests whether P contains a directory specification. */ #if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__ - /* Win32, Cygwin, OS/2, DOS */ + /* Native Windows, Cygwin, OS/2, DOS */ # define ISSLASH(C) ((C) == '/' || (C) == '\\') # define HAS_DEVICE(P) \ ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \ @@ -47,13 +46,9 @@ extern "C" { # define FILE_SYSTEM_PREFIX_LEN(P) 0 #endif -/* Concatenate a directory pathname, a relative pathname and an optional - suffix. Return a freshly allocated pathname. */ -extern char *concatenated_pathname (const char *directory, - const char *filename, const char *suffix); #ifdef __cplusplus } #endif -#endif /* _PATHNAME_H */ +#endif /* _FILENAME_H */