* sysdeps/ia64/fpu/Makefile: Modify sysdep_routines instead of
[glibc/pb-stable.git] / misc / dirname.c
blob8be25e51b873bd3c6587b728bd77493a2c4cd43e
1 /* dirname - return directory part of PATH.
2 Copyright (C) 1996, 2000 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 #include <libgen.h>
22 #include <string.h>
25 char *
26 dirname (char *path)
28 static const char dot[] = ".";
29 char *last_slash;
31 /* Find last '/'. */
32 last_slash = path != NULL ? strrchr (path, '/') : NULL;
34 if (last_slash != NULL && last_slash != path && last_slash[1] == '\0')
35 /* The '/' is the last character, we have to look further. */
36 last_slash = __memrchr (path, '/', last_slash - path);
38 if (last_slash != NULL)
40 /* Terminate the path. */
41 if (last_slash == path)
42 /* The last slash is the first character in the string. We have to
43 return "/". */
44 ++last_slash;
46 last_slash[0] = '\0';
48 else
49 /* This assignment is ill-designed but the XPG specs require to
50 return a string containing "." in any case no directory part is
51 found and so a static and constant string is required. */
52 path = (char *) dot;
54 return path;