mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-09 00:00:03 +01:00
28 lines
562 B
C
28 lines
562 B
C
![]() |
/*
|
||
|
* =====================================================================================
|
||
|
*
|
||
|
* Filename: init.h
|
||
|
*
|
||
|
* Description:
|
||
|
*
|
||
|
* Version: 1.0
|
||
|
* Created: 25.07.2014 15:05:13
|
||
|
* Revision: none
|
||
|
* Compiler: gcc
|
||
|
*
|
||
|
* Author: Georg Wassen (gw) (),
|
||
|
* Company:
|
||
|
*
|
||
|
* =====================================================================================
|
||
|
*/
|
||
|
|
||
|
#ifndef __INIT_H__
|
||
|
#define __INIT_H__
|
||
|
|
||
|
#include "opt.h"
|
||
|
|
||
|
int init(struct opt *opt);
|
||
|
int deinit(struct opt *opt);
|
||
|
|
||
|
#endif // __INIT_H__
|