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: 2025年9月7日 20:07,
40.74.122.252:LOG IN

©2025 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://massmind.org/techref/language/ccpp/cref/EXAMPLES/basename.c"> language ccpp cref EXAMPLES basename</A>

Did you find what you needed?

Welcome to massmind.org!

Welcome to massmind.org!

.

AltStyle によって変換されたページ (->オリジナル) /