mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-09 00:00:03 +01:00
27 lines
568 B
C
27 lines
568 B
C
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: setup.h
|
|
*
|
|
* Description:
|
|
*
|
|
* Version: 1.0
|
|
* Created: 25.07.2014 15:06:59
|
|
* Revision: none
|
|
* Compiler: gcc
|
|
*
|
|
* Author: Georg Wassen (gw) (),
|
|
* Company:
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
|
|
#ifndef __SETUP_H__
|
|
#define __SETUP_H__
|
|
|
|
#include "opt.h"
|
|
|
|
int setup(struct opt *opt);
|
|
int setdown(struct opt *opt);
|
|
|
|
#endif // __SETUP_H__
|