This directory contains two ports of the checksum program to the Apple Macintosh, stored in .hqx format which the BinHeX utility can convert to Macintosh executables. chksum1.hqx checksum for MPW (Apple) (uses "tools") chksum2.hqx checksum for Think C (Symantec) (stand-alone) Thanks to Yannis Haralambous 101/11, rue Breughel 59650 Villeneuve d'Ascq FRANCE Tel: 33-20-052880 Email: Internet: yannis@gat.citilille.fr for the contribution! Yannis reports about the port: >> ... >> To port checksum.c to MPW you don't need *any* change at all. >> For Think C you only need one command which will simulate a UNIX >> console: in the preamble you need >> >> #ifdef THINK_C >> #include >> #endif >> >> and before the first command in the main() routine, you need >> >> #ifdef THINK_C >> argc = ccommand( & argv ); >> #endif >> ...