dirname.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Library General Public License as
  7. published by the Free Software Foundation; either version 2 of the
  8. License, or (at your option) any later version.
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Library General Public License for more details.
  13. You should have received a copy of the GNU Library General Public
  14. License along with the GNU C Library; see the file COPYING.LIB. If not,
  15. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  16. Boston, MA 02111-1307, USA. */
  17. #define __USE_GNU
  18. #include <libgen.h>
  19. #include <string.h>
  20. char * dirname(char *path)
  21. {
  22. static const char dot[] = ".";
  23. char *last_slash;
  24. /* Find last '/'. */
  25. last_slash = path != NULL ? strrchr (path, '/') : NULL;
  26. if (last_slash != NULL && last_slash != path && last_slash[1] == '\0')
  27. /* The '/' is the last character, we have to look further. */
  28. last_slash = memrchr (path, '/', last_slash - path);
  29. if (last_slash != NULL)
  30. {
  31. /* Terminate the path. */
  32. if (last_slash == path)
  33. /* The last slash is the first character in the string. We have to
  34. return "/". */
  35. ++last_slash;
  36. last_slash[0] = '\0';
  37. }
  38. else
  39. /* This assignment is ill-designed but the XPG specs require to
  40. return a string containing "." in any case no directory part is
  41. found and so a static and constant string is required. */
  42. path = (char *) dot;
  43. return path;
  44. }