/* Programmer: Greg Perkins Program: ltr_count2.c Class: CS 73 C/UNIX Due: 17 February 1998 This is the second file in the ltr_count.c program. It only contains one function, which is called from the main program. The function returns the equality of two characters that are passed to it. */ int are_equal(int nc, int pc) { return (nc == pc); }