File: cliutils.h

package info (click to toggle)
rpm 4.16.1.2%2Bdfsg1-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 18,972 kB
  • sloc: ansic: 71,682; sh: 42,342; makefile: 893; python: 582; cpp: 571; perl: 231; sed: 16
file content (25 lines) | stat: -rw-r--r-- 463 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef _CLIUTIL_H
#define _CLIUTIL_H

/** \file cliutils.h
 *
 *  Misc helpers for RPM CLI tools
 */

#include <stdio.h>
#include <popt.h>
#include <rpm/rpmutil.h>

/* "normalized" exit: avoid overflowing and xargs special value 255 */
#define RETVAL(rc) (((rc) > 254) ? 254 : (rc))

RPM_GNUC_NORETURN
void argerror(const char * desc);

void printUsage(poptContext con, FILE * fp, int flags);

int initPipe(void);

int finishPipe(void);

#endif /* _CLIUTIL_H */