From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6e064806c6a78fe4 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-04-12 12:44:01 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!arclight.uoregon.edu!wn13feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi_feed4!attbi.com!sccrnsc04.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Ada to C Question References: <2a159604.0304120643.39f77838@posting.google.com> X-Newsreader: Tom's custom newsreader Message-ID: <20_la.432304$F1.63444@sccrnsc04> NNTP-Posting-Host: 12.234.13.56 X-Complaints-To: abuse@attbi.com X-Trace: sccrnsc04 1050176638 12.234.13.56 (Sat, 12 Apr 2003 19:43:58 GMT) NNTP-Posting-Date: Sat, 12 Apr 2003 19:43:58 GMT Organization: AT&T Broadband Date: Sat, 12 Apr 2003 19:43:58 GMT Xref: archiver1.google.com comp.lang.ada:36106 Date: 2003-04-12T19:43:58+00:00 List-Id: > I've noticed in Ada you can do things like. > > type MYTYPE_YOURTYPE is (MyType, -- 0 > YourType); -- 1 > > type YOURTYPE_MYTYPE is (YourType, -- 0 > MyType); -- 1 If the code you are tranlsating has nastiness like that, you better prepare to redo, rather than just transliterate. Does the original program actually work? Have you found other similar obfuscations yet?