X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fbackupfile.c;h=8222d46b853ae38920e73da1b0b3f4b180971d9e;hb=f88e233cf519284cd4d8b2e4694f3b2b3561d215;hp=c6d7914a672657d7aefcf4c3cdf63be08b709752;hpb=d87c39464604e74f580c7fae835be31a4c125c36;p=gnulib.git diff --git a/lib/backupfile.c b/lib/backupfile.c index c6d7914a6..8222d46b8 100644 --- a/lib/backupfile.c +++ b/lib/backupfile.c @@ -15,60 +15,62 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* David MacKenzie . +/* David MacKenzie . Some algorithms adapted from GNU Emacs. */ +#ifdef HAVE_CONFIG_H +# include +#endif + #include #include #include #include "backupfile.h" -#if defined(USG) || defined(STDC_HEADERS) -#include -#define index strchr -#define rindex strrchr +#ifdef HAVE_STRING_H +# include #else -#include +# include #endif -#ifdef DIRENT -#include -#ifdef direct -#undef direct -#endif -#define direct dirent -#define NLENGTH(direct) (strlen((direct)->d_name)) -#else /* !DIRENT */ -#define NLENGTH(direct) ((direct)->d_namlen) -#ifdef USG -#ifdef SYSNDIR -#include -#else /* !SYSNDIR */ -#include -#endif /* !SYSNDIR */ -#else /* !USG */ -#include -#endif /* !USG */ -#endif /* !DIRENT */ - -#ifdef VOID_CLOSEDIR +#ifdef HAVE_DIRENT_H +# include +# define NLENGTH(direct) (strlen((direct)->d_name)) +#else /* not HAVE_DIRENT_H */ +# define dirent direct +# define NLENGTH(direct) ((direct)->d_namlen) +# ifdef HAVE_SYS_NDIR_H +# include +# endif /* HAVE_SYS_NDIR_H */ +# ifdef HAVE_SYS_DIR_H +# include +# endif /* HAVE_SYS_DIR_H */ +# ifdef HAVE_NDIR_H +# include +# endif /* HAVE_NDIR_H */ +#endif /* HAVE_DIRENT_H */ + +#ifdef CLOSEDIR_VOID /* Fake a return value. */ -#define CLOSEDIR(d) (closedir (d), 0) +# define CLOSEDIR(d) (closedir (d), 0) #else -#define CLOSEDIR(d) closedir (d) +# define CLOSEDIR(d) closedir (d) #endif #ifdef STDC_HEADERS -#include +# include #else char *malloc (); #endif -#ifndef isascii -#define ISDIGIT(c) (isdigit ((unsigned char) (c))) +#if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII)) +# define ISASCII(c) 1 #else -#define ISDIGIT(c) (isascii (c) && isdigit (c)) +# define ISASCII(c) isascii(c) #endif +#define ISDIGIT(c) (ISASCII ((unsigned char) (c)) \ + && isdigit ((unsigned char) (c))) + #if defined (HAVE_UNISTD_H) #include #endif @@ -76,9 +78,9 @@ char *malloc (); #if defined (_POSIX_VERSION) /* POSIX does not require that the d_ino field be present, and some systems do not provide it. */ -#define REAL_DIR_ENTRY(dp) 1 +# define REAL_DIR_ENTRY(dp) 1 #else -#define REAL_DIR_ENTRY(dp) ((dp)->d_ino != 0) +# define REAL_DIR_ENTRY(dp) ((dp)->d_ino != 0) #endif /* Which type of backup file names are generated. */ @@ -138,15 +140,15 @@ max_backup_version (file, dir) char *file, *dir; { DIR *dirp; - struct direct *dp; + struct dirent *dp; int highest_version; int this_version; int file_name_length; - + dirp = opendir (dir); if (!dirp) return 0; - + highest_version = 0; file_name_length = strlen (file); @@ -154,7 +156,7 @@ max_backup_version (file, dir) { if (!REAL_DIR_ENTRY (dp) || NLENGTH (dp) <= file_name_length) continue; - + this_version = version_number (file, dp->d_name, file_name_length); if (this_version > highest_version) highest_version = this_version; @@ -193,7 +195,7 @@ version_number (base, backup, base_length) { int version; char *p; - + version = 0; if (!strncmp (base, backup, base_length) && ISDIGIT (backup[base_length])) { @@ -213,7 +215,7 @@ concat (str1, str2) char *str1, *str2; { char *newstr; - char str1_length = strlen (str1); + int str1_length = strlen (str1); newstr = malloc (str1_length + strlen (str2) + 1); if (newstr == 0)