]> Devoid-pointer.net GitWeb - libHPCS.git/commitdiff
Move month_to_number() to correct place alphabetically-wise
authorMichal Malý <madcatxster@devoid-pointer.net>
Fri, 27 Mar 2015 00:52:09 +0000 (01:52 +0100)
committerMichal Malý <madcatxster@devoid-pointer.net>
Fri, 27 Mar 2015 00:52:09 +0000 (01:52 +0100)
libhpcs.c

index 3fcdf41060e6b861beb7fdacb2dfb0498a947960..afa9299682c119277c156338336c9146d92c30c6 100644 (file)
--- a/libhpcs.c
+++ b/libhpcs.c
@@ -346,6 +346,35 @@ static void guess_sampling_rate(struct HPCS_MeasuredData* mdata)
        }
 }
 
+static uint8_t month_to_number(const char* month)
+{
+       if (strcmp(MON_JAN_STR, month) == 0)
+               return 1;
+       else if (strcmp(MON_FEB_STR, month) == 0)
+               return 2;
+       else if (strcmp(MON_MAR_STR, month) == 0)
+               return 3;
+       else if (strcmp(MON_APR_STR, month) == 0)
+               return 4;
+       else if (strcmp(MON_MAY_STR, month) == 0)
+               return 5;
+       else if (strcmp(MON_JUN_STR, month) == 0)
+               return 6;
+       else if (strcmp(MON_JUL_STR, month) == 0)
+               return 7;
+       else if (strcmp(MON_AUG_STR, month) == 0)
+               return 8;
+       else if (strcmp(MON_SEP_STR, month) == 0)
+               return 9;
+       else if (strcmp(MON_OCT_STR, month) == 0)
+               return 10;
+       else if (strcmp(MON_NOV_STR, month) == 0)
+               return 11;
+       else if (strcmp(MON_DEC_STR, month) == 0)
+               return 12;
+       else
+               return 0;
+}
 
 static enum HPCS_ParseCode next_native_line(HPCS_UFH fh, HPCS_NChar* line, int32_t length)
 {
@@ -560,36 +589,6 @@ static enum HPCS_ParseCode read_date(FILE* datafile, struct HPCS_Date* date)
        return PARSE_OK;
 }
 
-static uint8_t month_to_number(const char* month)
-{
-       if (strcmp(MON_JAN_STR, month) == 0)
-               return 1;
-       else if (strcmp(MON_FEB_STR, month) == 0)
-               return 2;
-       else if (strcmp(MON_MAR_STR, month) == 0)
-               return 3;
-       else if (strcmp(MON_APR_STR, month) == 0)
-               return 4;
-       else if (strcmp(MON_MAY_STR, month) == 0)
-               return 5;
-       else if (strcmp(MON_JUN_STR, month) == 0)
-               return 6;
-       else if (strcmp(MON_JUL_STR, month) == 0)
-               return 7;
-       else if (strcmp(MON_AUG_STR, month) == 0)
-               return 8;
-       else if (strcmp(MON_SEP_STR, month) == 0)
-               return 9;
-       else if (strcmp(MON_OCT_STR, month) == 0)
-               return 10;
-       else if (strcmp(MON_NOV_STR, month) == 0)
-               return 11;
-       else if (strcmp(MON_DEC_STR, month) == 0)
-               return 12;
-       else
-               return 0;
-}
-
 static enum HPCS_ParseCode read_method_info_file(HPCS_UFH fh, struct HPCS_MethodInfo* minfo)
 {
        HPCS_NChar line[64];