csomh / source-git / rpm

Forked from source-git/rpm 4 years ago
Clone
2ff057
#ifndef _CLIUTIL_H
2ff057
#define _CLIUTIL_H
2ff057
2ff057
/** \file cliutils.h
2ff057
 *
2ff057
 *  Misc helpers for RPM CLI tools
2ff057
 */
2ff057
2ff057
#include <stdio.h>
2ff057
#include <popt.h>
2ff057
#include <rpm/rpmutil.h>
2ff057
2ff057
/* "normalized" exit: avoid overflowing and xargs special value 255 */
2ff057
#define RETVAL(rc) (((rc) > 254) ? 254 : (rc))
2ff057
2ff057
RPM_GNUC_NORETURN
2ff057
void argerror(const char * desc);
2ff057
2ff057
void printUsage(poptContext con, FILE * fp, int flags);
2ff057
2ff057
int initPipe(void);
2ff057
2ff057
int finishPipe(void);
2ff057
2ff057
#endif /* _CLIUTIL_H */