Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

/* 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;
}