home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 328_02 / wfvdate.c < prev    next >
C/C++ Source or Header  |  1991-03-17  |  630b  |  25 lines

  1. /* wfvdate.c
  2.  *    form entry validation of dates and times
  3.  *
  4.  *    wfvdate may be placed in a WFORM description table
  5.  *      PARAMETERS: ptr to form description entry
  6.  *            ptr to buff containing user input.
  7.  *            buff must be larg enough for mm/dd/yyyy = 11 bytes.
  8.  *    RETURNS: 0 if date is valid.
  9.  *
  10.  *
  11.  */
  12.  
  13. #include "wsys.h"
  14.  
  15.  
  16. int wfvdate ( WFORM *form, char *entrybuff )
  17.     {
  18.     int retcode = wval_date ( entrybuff );    
  19.     if ( retcode != 0 )
  20.         {
  21.         wform_showerror ( form, "Invalid date, should be mm/dd/yyyy" );
  22.         }
  23.     return (retcode);        /* wfvdate */
  24.     }
  25. /*------------------- end of WFVDATE.C -----------------*/