mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-09 00:00:03 +01:00
29 lines
637 B
C
29 lines
637 B
C
![]() |
/*
|
||
|
* =====================================================================================
|
||
|
*
|
||
|
* Filename: report.h
|
||
|
*
|
||
|
* Description:
|
||
|
*
|
||
|
* Version: 1.0
|
||
|
* Created: 25.07.2014 15:11:07
|
||
|
* Revision: none
|
||
|
* Compiler: gcc
|
||
|
*
|
||
|
* Author: Georg Wassen (gw) (),
|
||
|
* Company:
|
||
|
*
|
||
|
* =====================================================================================
|
||
|
*/
|
||
|
|
||
|
#ifndef __REPORT_H__
|
||
|
#define __REPORT_H__
|
||
|
|
||
|
#include "run.h"
|
||
|
#include "opt.h"
|
||
|
|
||
|
int report_params(const struct opt *opt);
|
||
|
int report(const struct opt *opt, const struct result *result);
|
||
|
|
||
|
#endif // __REPORT_H__
|