diff options
Diffstat (limited to 'cmd/zed/zed_strings.h')
-rw-r--r-- | cmd/zed/zed_strings.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/cmd/zed/zed_strings.h b/cmd/zed/zed_strings.h index 6177c7657..37a84cad7 100644 --- a/cmd/zed/zed_strings.h +++ b/cmd/zed/zed_strings.h @@ -17,16 +17,11 @@ typedef struct zed_strings zed_strings_t; -zed_strings_t * zed_strings_create(void); - +zed_strings_t *zed_strings_create(void); void zed_strings_destroy(zed_strings_t *zsp); - int zed_strings_add(zed_strings_t *zsp, const char *key, const char *s); - -const char * zed_strings_first(zed_strings_t *zsp); - -const char * zed_strings_next(zed_strings_t *zsp); - +const char *zed_strings_first(zed_strings_t *zsp); +const char *zed_strings_next(zed_strings_t *zsp); int zed_strings_count(zed_strings_t *zsp); #endif /* !ZED_STRINGS_H */ |