[go: up one dir, main page]

File: misc.h

package info (click to toggle)
s390-tools 2.3.0-2~deb10u1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 6,188 kB
  • sloc: ansic: 87,755; sh: 8,398; cpp: 8,384; perl: 3,783; makefile: 1,476; asm: 654
file content (48 lines) | stat: -rw-r--r-- 946 bytes parent folder | download
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 * zkey - Generate, re-encipher, and validate secure keys
 *
 * Local helper functions
 *
 * Copyright 2017 IBM Corp.
 *
 * s390-tools is free software; you can redistribute it and/or modify
 * it under the terms of the MIT license. See LICENSE for details.
 */

#ifndef MISC_H
#define MISC_H

#include <err.h>

#include "lib/util_prg.h"

/**
 * Command is missing (for 'git' like tools)
 */
static inline void misc_print_missing_command(void)
{
	warnx("Command is required");
	util_prg_print_parse_error();
}

/**
 * Invalid command specified (for 'git' like tools)
 */
void misc_print_invalid_command(const char *command)
{
	warnx("Invalid command '%s'", command);
	util_prg_print_parse_error();
}

/**
 * An required parameter has not been specified
 *
 * @param[in] option  Parameter string
 */
void misc_print_required_parm(const char *parm_name)
{
	warnx("Parameter '%s' is required", parm_name);
	util_prg_print_parse_error();
}

#endif