diff options
Diffstat (limited to 'lib/include')
-rw-r--r-- | lib/include/service.h | 8 | ||||
-rw-r--r-- | lib/include/util.h | 7 |
2 files changed, 15 insertions, 0 deletions
diff --git a/lib/include/service.h b/lib/include/service.h index 6808bdd..dd7700c 100644 --- a/lib/include/service.h +++ b/lib/include/service.h @@ -91,5 +91,13 @@ void del_srv_list(service_list_t *list); */ service_t *srv_tsort(service_t *list); +const char *svc_type_to_string(int type); + +int svc_type_from_string(const char *type); + +const char *svc_target_to_string(int target); + +int svc_target_from_string(const char *target); + #endif /* SERVICE_H */ diff --git a/lib/include/util.h b/lib/include/util.h index ed5dac2..9ba9ffb 100644 --- a/lib/include/util.h +++ b/lib/include/util.h @@ -70,6 +70,13 @@ int splitkv(char *line, char **key, char **value); const enum_map_t *enum_by_name(const enum_map_t *map, const char *name); /* + Search through an array of enum_map_t entries to resolve a numeric + value to a string name. The end of the map is indicated by a sentinel + entry with the name set to NULL. +*/ +const char *enum_to_name(const enum_map_t *map, int value); + +/* Create a copy of the input string inp, but replace all occourances of %<number> with argv[number] if the number is within the bounds specified by argc. |