From 04da651f0911277cd9ce1b8eabf5132542cf5f71 Mon Sep 17 00:00:00 2001 From: Liam Beguin Date: Tue, 8 Sep 2020 11:09:05 -0400 Subject: [PATCH] options: expose string_to_long() Expose string_to_long() so that other source files can use it. Signed-off-by: Liam Beguin --- src/options.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/options.h b/src/options.h index b03e9f0..bf8fbd0 100644 --- a/src/options.h +++ b/src/options.h @@ -56,4 +56,5 @@ struct option_t extern struct option_t option; +long string_to_long(char *string); void parse_options(int argc, char *argv[]);