File: basename.c

package info (click to toggle)
nsd 2.3.6-1%2Betch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 1,268 kB
  • ctags: 1,840
  • sloc: ansic: 11,343; yacc: 742; makefile: 277; sh: 262; perl: 238
file content (18 lines) | stat: -rw-r--r-- 290 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Return the basename of a pathname.
   This file is in the public domain. */

char *
basename (name)
     const char *name;
{
  const char *base;

  for (base = name; *name; name++)
    {
      if (*name == '/')
       {
         base = name + 1;
       }
    }
  return (char *) base;
}