X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fbackupfile.c;h=1698c3474d339fdff0e071416002104935ddc1e0;hb=3b3231a029a148f719f3347a4ec9ab11f7625231;hp=8781c719c255d88310699395a37296c18f7a7122;hpb=0b35b79c4c34e3c58b03b8a4a392ca380d41a161;p=gnulib.git diff --git a/lib/backupfile.c b/lib/backupfile.c index 8781c719c..1698c3474 100644 --- a/lib/backupfile.c +++ b/lib/backupfile.c @@ -12,8 +12,8 @@ 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* David MacKenzie . Some algorithms adapted from GNU Emacs. */ @@ -63,12 +63,12 @@ char *malloc (); #endif #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII)) -# define ISASCII(c) 1 +# define IN_CTYPE_DOMAIN(c) 1 #else -# define ISASCII(c) isascii(c) +# define IN_CTYPE_DOMAIN(c) isascii(c) #endif -#define ISDIGIT(c) (ISASCII ((unsigned char) (c)) \ +#define ISDIGIT(c) (IN_CTYPE_DOMAIN ((unsigned char) (c)) \ && isdigit ((unsigned char) (c))) #if defined (HAVE_UNISTD_H) @@ -105,7 +105,7 @@ static int version_number (); char * find_backup_file_name (file) - char *file; + const char *file; { char *dir; char *base_versions; @@ -137,7 +137,8 @@ find_backup_file_name (file) static int max_backup_version (file, dir) - char *file, *dir; + const char *file; + const char *dir; { DIR *dirp; struct dirent *dp; @@ -171,7 +172,7 @@ max_backup_version (file, dir) static char * make_version_name (file, version) - char *file; + const char *file; int version; { char *backup_name; @@ -189,12 +190,12 @@ make_version_name (file, version) static int version_number (base, backup, base_length) - char *base; - char *backup; + const char *base; + const char *backup; int base_length; { int version; - char *p; + const char *p; version = 0; if (!strncmp (base, backup, base_length) && ISDIGIT (backup[base_length])) @@ -212,7 +213,8 @@ version_number (base, backup, base_length) static char * concat (str1, str2) - char *str1, *str2; + const char *str1; + const char *str2; { char *newstr; int str1_length = strlen (str1);