please dont rip this site

Language Ccpp Cref Examples Basename.c

/ ************************************************************************
 * 
 * Purpose: Extract the directory information from a file name.
 *
 *          /etc/local/bin/fdmount --> fdmount
 *
 *          This mimics the unix command 'basename'.
 *
 * Author:  M J Leslie
 * Date:    29-Feb-96
 *
 ************************************************************************/

#include <string.h>

char *basename(const char *FullName);

main()
{
    char *FullName = "/usr/local/bin/fdmount";

    printf("Full name is %s \n", FullName);

    printf("File name is %s \n", basename(FullName));
}

/************************************************************************/

char *basename(const char *FullName)
{
    static char *File;

    /* ...        I guess DOS users will have to change the direction of
       ...        the slash. */

    File = strrchr(FullName, '/');

    /* ...        If no slashes have been found, Return the full file name */

    if (File == NULL)
    {
        File = FullName;
    }
    else
    {
        File++;
    }

    return(File);
}



file: /Techref/language/ccpp/cref/EXAMPLES/basename.c, 1KB, , updated: 1998/1/27 10:23, local time: 2024/4/19 12:36,
TOP NEW HELP FIND: 
3.136.154.103:LOG IN

 ©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://www.massmind.org/techref/language/ccpp/cref/EXAMPLES/basename.c"> language ccpp cref EXAMPLES basename</A>

Did you find what you needed? From: "/language/ccpp/cref/EXAMPLES/basename.c"

 

Welcome to massmind.org!

 

Welcome to www.massmind.org!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .