]> andersk Git - gssapi-openssh.git/blame - openssh/openbsd-compat/basename.c
merge OPENSSH_4_3P2_20060726 to gpt branch
[gssapi-openssh.git] / openssh / openbsd-compat / basename.c
CommitLineData
e00da40d 1/* $OpenBSD: basename.c,v 1.14 2005/08/08 08:05:33 espie Exp $ */
1c14df9e 2
3/*
e00da40d 4 * Copyright (c) 1997, 2004 Todd C. Miller <Todd.Miller@courtesan.com>
1c14df9e 5 *
70791e56 6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
1c14df9e 9 *
70791e56 10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1c14df9e 17 */
1c14df9e 18
e00da40d 19/* OPENBSD ORIGINAL: lib/libc/gen/basename.c */
20
70791e56 21#include "includes.h"
22#ifndef HAVE_BASENAME
1c14df9e 23
1c14df9e 24char *
25basename(const char *path)
26{
27 static char bname[MAXPATHLEN];
e00da40d 28 size_t len;
29 const char *endp, *startp;
1c14df9e 30
31 /* Empty or NULL string gets treated as "." */
32 if (path == NULL || *path == '\0') {
e00da40d 33 bname[0] = '.';
34 bname[1] = '\0';
35 return (bname);
1c14df9e 36 }
37
e00da40d 38 /* Strip any trailing slashes */
1c14df9e 39 endp = path + strlen(path) - 1;
40 while (endp > path && *endp == '/')
41 endp--;
42
e00da40d 43 /* All slashes becomes "/" */
1c14df9e 44 if (endp == path && *endp == '/') {
e00da40d 45 bname[0] = '/';
46 bname[1] = '\0';
47 return (bname);
1c14df9e 48 }
49
50 /* Find the start of the base */
51 startp = endp;
52 while (startp > path && *(startp - 1) != '/')
53 startp--;
54
e00da40d 55 len = endp - startp + 1;
56 if (len >= sizeof(bname)) {
1c14df9e 57 errno = ENAMETOOLONG;
e00da40d 58 return (NULL);
1c14df9e 59 }
e00da40d 60 memcpy(bname, startp, len);
61 bname[len] = '\0';
62 return (bname);
1c14df9e 63}
64
65#endif /* !defined(HAVE_BASENAME) */
This page took 0.074925 seconds and 5 git commands to generate.