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. */
13 * Wrapper to free(3), hides const compilation noise, permit NULL, return NULL.
14 * @param p memory to free
17 /*@unused@*/ static inline /*@null@*/ void *
18 _free(/*@only@*/ /*@null@*/ const void * p
)
21 if (p
!= NULL
) free((void *)p
);
25 /* Bit mask macros. */
26 /*@-exporttype -redef @*/
27 typedef unsigned int __pbm_bits
;
28 /*@=exporttype =redef @*/
29 #define __PBM_NBITS (8 * sizeof (__pbm_bits))
30 #define __PBM_IX(d) ((d) / __PBM_NBITS)
31 #define __PBM_MASK(d) ((__pbm_bits) 1 << (((unsigned)(d)) % __PBM_NBITS))
32 /*@-exporttype -redef @*/
36 /*@=exporttype =redef @*/
37 #define __PBM_BITS(set) ((set)->bits)
39 #define PBM_ALLOC(d) calloc(__PBM_IX (d) + 1, sizeof(__pbm_bits))
40 #define PBM_FREE(s) _free(s);
41 #define PBM_SET(d, s) (__PBM_BITS (s)[__PBM_IX (d)] |= __PBM_MASK (d))
42 #define PBM_CLR(d, s) (__PBM_BITS (s)[__PBM_IX (d)] &= ~__PBM_MASK (d))
43 #define PBM_ISSET(d, s) ((__PBM_BITS (s)[__PBM_IX (d)] & __PBM_MASK (d)) != 0)
45 struct optionStackEntry
{
54 /*@observer@*/ /*@null@*/
55 const char * nextCharArg
;
56 /*@dependent@*/ /*@null@*/
61 struct poptContext_s
{
62 struct optionStackEntry optionStack
[POPT_OPTION_DEPTH
];
64 struct optionStackEntry
* os
;
65 /*@owned@*/ /*@null@*/
66 const char ** leftovers
;
70 const struct poptOption
* options
;
78 /*@owned@*/ /*@null@*/
82 const char ** finalArgv
;
85 /*@dependent@*/ /*@null@*/
88 const char * execPath
;
91 const char * otherHelp
;
100 #if defined(HAVE_GETTEXT) && !defined(__LCLINT__)
101 #define _(foo) gettext(foo)
106 #if defined(HAVE_DCGETTEXT) && !defined(__LCLINT__)
107 #define D_(dom, str) dgettext(dom, str)
108 #define POPT_(foo) D_("popt", foo)
110 #define D_(dom, str) str
111 #define POPT_(foo) foo