File: rc.h

package info (click to toggle)
grep-dctrl 1.3a
  • links: PTS
  • area: main
  • in suites: potato
  • size: 660 kB
  • ctags: 403
  • sloc: ansic: 4,004; sh: 358; makefile: 226; sed: 93
file content (12 lines) | stat: -rw-r--r-- 417 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef RC_H__
#define RC_H__

/* Search for exename (only basename, though) in rcfname (or if it is
   null, in default rc files) and return the found corresponding
   default input file name, or null, if not found or other error
   occurred.  The returned pointer will be invalidated by the next
   call to this function.  */
const char *
find_ifile_by_exename (const char * exename, const char * rcfname);

#endif