
/****************************************************************************/

/*  Module PNLCV06C.C 

    Copyright 1986 Roundhill Computer Systems Limited
    All rights reserved

    Use and disclosure of this code are prohibited unless in accordance
    with the terms of the PANEL software licence.

    ************************************************************************
    *** THE OBJECT CODE VERSION OF THIS MODULE IS INCLUDED IN THE PANEL  ***
    *** LIBRARY.  IF YOU AMEND AND COMPILE THIS MODULE AND LINK IT WITH  ***
    *** YOUR APPLICATION IT WILL SUPERSEDE THE LIBRARY VERSION.          ***
    ************************************************************************

    PANEL:  Type 4          : Validation
            Source Language : C

    Modification History (Push-Down List):  

            28.12.85        : Convert to table-driven operation

*****************************************************************************/

#include <pnl4.h>

/*  Routine number 6 caters for keyboards which have the symbols 
    '<' and '>' on the upper case of the comma and period keys.
    It effectively allows comma and period to be entered in 
    either upper or lower case.  Typists will feel entirely at
    home when entering names and addresses.

******************************************************************************/

PACV06()

{
    if ((*PVINCH == '<') || (*PVINCH == '>')) *PVDINCH = (*PVINCH -= '\020');
    return(!PATDSP(*PVINCH));                    /* back 0 if OK */
}
