~ubuntu-branches/ubuntu/karmic/popt/karmic

« back to all changes in this revision

Viewing changes to findme.h

  • Committer: Bazaar Package Importer
  • Author(s): Paul Martin
  • Date: 2008-06-25 07:25:34 UTC
  • mfrom: (4.1.3 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080625072534-sc91ls37wk5gqrbq
Tags: 1.14-4
Remove locale data from the udeb, and change the package 
description. The debian-installer developers are sure that they 
don't need the localization information, mainly error messages.
(Thanks to Frans Pop for bringing this to my attention.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/** \ingroup popt
2
 
 * \file popt/findme.h
3
 
 */
4
 
 
5
 
/* (C) 1998-2000 Red Hat, Inc. -- Licensing details are in the COPYING
6
 
   file accompanying popt source distributions, available from 
7
 
   ftp://ftp.rpm.org/pub/rpm/dist. */
8
 
 
9
 
#ifndef H_FINDME
10
 
#define H_FINDME
11
 
 
12
 
/**
13
 
 * Return absolute path to executable by searching PATH.
14
 
 * @param argv0         name of executable
15
 
 * @return              (malloc'd) absolute path to executable (or NULL)
16
 
 */
17
 
/*@null@*/ const char * findProgramPath(/*@null@*/ const char * argv0)
18
 
        /*@*/;
19
 
 
20
 
#endif