File: basenames.h

package info (click to toggle)
logrotate 3.7.1-5
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 440 kB
  • ctags: 178
  • sloc: ansic: 2,008; sh: 308; makefile: 187
file content (9 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
#ifndef H_BASENAMES
#define H_BASENAMES

/* returns a pointer inside of name */
char * ourBaseName(char *name);
/* returns a malloc'd string which must be freed by the caller */
char * ourDirName(char * origname);

#endif