Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.2 9/18/84; site callan.UUCP Path: utzoo!watmath!clyde!burl!ulysses!mhuxr!mhuxt!houxm!vax135!cornell!uw-beaver!tektronix!hplabs!sdcrdcf!trwrb!scgvaxd!wlbr!callan!tim From: tim@callan.UUCP (Tim Smith) Newsgroups: net.lang.c,net.micro.mac Subject: Re: help with sizeof() in HIPPO-C Message-ID: <1088@callan.UUCP> Date: Mon, 26-Aug-85 20:22:46 EDT Article-I.D.: callan.1088 Posted: Mon Aug 26 20:22:46 1985 Date-Received: Sat, 31-Aug-85 04:57:15 EDT References: <1518@islenet.UUCP> Distribution: net Organization: Callan Data Systems, Westlake Village, CA Lines: 27 Xref: watmath net.lang.c:6199 net.micro.mac:2520 > Just discovered that there does not seem to be a sizeof() function > in Hippo C level I or II. This would sure be useful for passing Level I was written in Pasadena, and when I was bored, I would go over and hassle them about things I thought they were doing wrong. I don't think I would have missed a lack of sizeof. Also, we once ran a set of C progrs meant to test out pcc through Hippo level I, and there must have been a sizeof in there somewhere! ( no - I can't tell anyone where to get the set of test programs. ). Anyway, try all of the following, since I am not sure how they handle builtin functions like sizeof -- they may have fucked up the parsing: sizeof x ; /* where x is a variable */ sizeof(x) ; sizeof( x ) ; sizeof (x) ; sizeof ( x ) ; sizeof(int) ; sizeof( int ) ; sizeof (int) ; sizeof ( int ) ; If none of these work, give them a call. -- Tim Smith ihnp4!{cithep,wlbr!callan}!tim