mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
dc64af1d2e
source code.
(This used to be commit 9559886a92
)
21 lines
504 B
C
21 lines
504 B
C
/** \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
|