File: basename.c

package info (click to toggle)
nsd 4.14.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,188 kB
  • sloc: ansic: 64,639; sh: 4,523; python: 2,085; yacc: 1,344; makefile: 688
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;
}