/* Copyright (C) 1992 by Thomas Glen Smith. All Rights Reserved. */ /* ceq APL2 V1.0.0 ***************************************************** * Returns integer 1 or 0 depending on whether left equals rite. * ***********************************************************************/ #define INCLUDES 0 #include "includes.h" int ceq(left,rite) char left,rite; { return(left == rite); }