15 lines
224 B
C
15 lines
224 B
C
|
|
#ifndef RUNLEVEL_H_
|
||
|
|
#define RUNLEVEL_H_
|
||
|
|
|
||
|
|
#include <stddef.h>
|
||
|
|
|
||
|
|
#define RUNLEVEL_DESCRIPTION_MAX 64
|
||
|
|
|
||
|
|
struct runlevel {
|
||
|
|
char rl_description[RUNLEVEL_DESCRIPTION_MAX];
|
||
|
|
char **rl_requires;
|
||
|
|
size_t rl_requires_count;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|