Path: utzoo!utgpu!cs.utexas.edu!sdd.hp.com!ucsd!ucbvax!mtxinu!unisoft!seer!clh From: clh@seer.UUCP (Chris Hatch) Newsgroups: alt.sources.d Subject: Re: bpe - binary patch editor Message-ID: <668@seer.UUCP> Date: 30 Oct 90 11:08:28 GMT References: <2188@sixhub.UUCP> <4902@taux01.nsc.com> Distribution: alt Organization: Brad Lanam Alamo, CA Lines: 10 In article <4902@taux01.nsc.com> amos@taux01.nsc.com (Amos Shapir) writes: >The 'h' command doesn't work as distributed. To fix, precede each call to >'toupper' in hexsrch.c by an appropriate 'if(islower(a))' test. >(I wonder why people bother to post programs they never checked themselves >even once - there's no way this could have worked on any UNIX version I know) Actually, by definition 'if (islower(a)) a=toupper(a);' should be the exact same thing as 'a=toupper(a);'. If that is not the case, then your compiler (or rather your library) is broken. This is in ANSI... Don't know about the Unix "standards."