Paul Zinselmeyer
ba8e969470
All checks were successful
Latex Build / build-latex (Assignment 4 - Protokollsicherheit (Praxis)) (push) Successful in 1m2s
Latex Build / build-latex (Assignment 5 - Software Security - Teil 1) (push) Successful in 1m3s
Latex Build / build-latex (Assignment 6 - Software Security - Teil 2) (push) Successful in 1m0s
Latex Build / build-latex (Assignment 4 - Protokollsicherheit (Praxis)) (pull_request) Successful in 30s
Latex Build / build-latex (Assignment 5 - Software Security - Teil 1) (pull_request) Successful in 10s
Latex Build / build-latex (Assignment 6 - Software Security - Teil 2) (pull_request) Successful in 8s
21 lines
No EOL
297 B
C
Executable file
21 lines
No EOL
297 B
C
Executable file
#ifndef UTIL_H_
|
|
#define UTIL_H_
|
|
|
|
#include "wallet.h"
|
|
|
|
void info_print(const char* str);
|
|
|
|
void warning_print(const char* str);
|
|
|
|
void error_print(const char* str);
|
|
|
|
void print_wallet(const wallet_t* wallet);
|
|
|
|
int is_error(int error_code);
|
|
|
|
void show_help();
|
|
|
|
void show_version();
|
|
|
|
|
|
#endif // UTIL_H_
|