1: #ifndef lint
   2: static char sccsid[] = "@(#)lastpart.c	5.1 (Berkeley) 7/2/83";
   3: #endif
   4: 
   5: /*******
   6:  *	char *
   7:  *	lastpart(file)	find last part of file name
   8:  *	char *file;
   9:  *
  10:  *	return - pointer to last part
  11:  */
  12: 
  13: char *
  14: lastpart(file)
  15: register char *file;
  16: {
  17:     register char *c;
  18: 
  19:     c = file + strlen(file);
  20:     while (c >= file)
  21:         if (*(--c) == '/')
  22:             break;
  23:     return(++c);
  24: }

Defined functions

Defined variables

sccsid defined in line 2; never used
Last modified: 1983-07-03
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 589
Valid CSS Valid XHTML 1.0 Strict