recio, Version 2.13, Release September 4, 1995.
Copyright (C) 1994-1995, William Pierpoint.

WHAT'S NEW in RECIO version 2.13?

    Fixed bugs in rsetrecstr(), rcgett(), and rgett() functions.
    Revised rfixt() function.

    Revised algorithm within sftotm() function in rgett.c file to do 
    a better job of parsing incomplete time data.
    
    Added macro RECBEGYR and function rsetbegyr().  These control the 
    interpretation of time data that is read by the %y format.  RECBEGYR 
    defaults to 1951.  In other words, the %y input corresponds to the 
    years from 1951 to 2050.  Note that time_t type variables may not 
    be able to represent the complete range, but that you should not have 
    this limitation if using struct tm type variables.  To represent a 
    different range of years, you can change the beginning year of the 
    range by using the rsetbegyr function.
    
    Examples: 1/1/51 -> Jan 1, 1951
            12/31/99 -> Dec 31, 1999
              1/1/00 -> Jan 1, 2000
            12/31/50 -> Dec 31, 2050

    Changed EINVDAT to EDOM for ANSI-C compatibility.  
    
    Changed abort() to exit(EXIT_FAILURE) so that streams are flushed 
    upon abnormal program termination.
    
    Improved portability by moving all compiler dependencies to recio.h.

