123456789101112131415161718192021222324252627282930313233 |
-
-
- #ifndef __STATE_STRING_H__
- #define __STATE_STRING_H__
-
- #include <sys/types.h>
- #include "state.h"
-
- void state_string_set(char *value, size_t length,
- const char *name);
- void state_string_return(enum system_state state);
-
- void state_string_enter(void);
- void state_string_exit(void);
- void state_string_run(void);
-
- #endif
|