File: findme.h

package info (click to toggle)
backuppc-rsync 3.1.3.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,772 kB
  • sloc: ansic: 46,855; sh: 3,369; perl: 1,932; makefile: 166; python: 83
file content (20 lines) | stat: -rw-r--r-- 504 bytes parent folder | download | duplicates (81)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/** \ingroup popt
 * \file popt/findme.h
 */

/* (C) 1998-2000 Red Hat, Inc. -- Licensing details are in the COPYING
   file accompanying popt source distributions, available from 
   ftp://ftp.rpm.org/pub/rpm/dist. */

#ifndef H_FINDME
#define H_FINDME

/**
 * Return absolute path to executable by searching PATH.
 * @param argv0		name of executable
 * @return		(malloc'd) absolute path to executable (or NULL)
 */
/*@null@*/ const char * findProgramPath(/*@null@*/ const char * argv0)
	/*@*/;

#endif