strtod: avoid C99 decl-after-statement
[gnulib.git] / lib / rename.c
1 /* Work around the bug in some systems whereby rename fails when the source
2    file has a trailing slash.  The rename functions of SunOS 4.1.1_U1 and
3    mips-dec-ultrix4.4 have this bug.
4
5    Copyright (C) 2001, 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
6
7    This program is free software: you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 /* written by Volker Borchert */
21
22 #include <config.h>
23 #undef rename
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28
29 #include "dirname.h"
30 #include "xalloc.h"
31
32 /* Rename the file SRC to DST, removing any trailing
33    slashes from SRC.  Needed for SunOS 4.1.1_U1.  */
34
35 int
36 rpl_rename (char const *src, char const *dst)
37 {
38   char *src_temp;
39   int ret_val;
40   size_t s_len = strlen (src);
41
42   if (s_len && src[s_len - 1] == '/')
43     {
44       src_temp = xstrdup (src);
45       strip_trailing_slashes (src_temp);
46     }
47   else
48     src_temp = (char *) src;
49
50   ret_val = rename (src_temp, dst);
51
52   if (src_temp != src)
53     free (src_temp);
54
55   return ret_val;
56 }