From 428849beb3be85cf69f3ca3029d330ee2f2d842f Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 28 Apr 2020 14:12:42 -0400 Subject: define MAXFLOAT if it is not already --- include/strlist.h | 8 -------- tests/test_strlist.c | 4 ++++ 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/include/strlist.h b/include/strlist.h index f887643..e236473 100644 --- a/include/strlist.h +++ b/include/strlist.h @@ -5,20 +5,12 @@ #ifndef SPM_STRLIST_H #define SPM_STRLIST_H -#if !defined(MAXFLOAT) -#include -#endif - typedef struct { size_t num_alloc; size_t num_inuse; char **data; } StrList; -#define STRLIST_DEFAULT 1 << 0 -#define STRLIST_ASC 1 << 1 -#define STRLIST_DSC 1 << 2 - StrList *strlist_init(); long double strlist_item_as_long_double(StrList *pStrList, size_t index); double strlist_item_as_double(StrList *pStrList, size_t index); diff --git a/tests/test_strlist.c b/tests/test_strlist.c index a4ea647..fc1ec4b 100644 --- a/tests/test_strlist.c +++ b/tests/test_strlist.c @@ -1,6 +1,10 @@ #include "spm.h" #include "framework.h" +#if !defined(MAXFLOAT) +#define MAXFLOAT 3.40282347e+38F +#endif + static const char *story_truth = "The quick brown fox jumps over the lazy dog."; static const char *story_truth_rev = "dog. jumps over the lazy fox The quick brown"; static const char *story_truth_sort_asc = "fox dog. The quick brown jumps over the lazy"; -- cgit