#ifndef btc_date_read_H #define btc_date_read_H /* Reading ISO format dates. */ /* Last edited on 2015-04-20 01:09:39 by stolfilocal */ #define _GNU_SOURCE #include #include int btc_date_read(FILE* rd, char* name, int nd, char* dt[], bool_t debug); /* Parses an ISO date from {rd}, skipping leading blanks if needed. Then converts the date to an integer day index by looking it up in {dt[0..nd-1]}. */ #endif