home *** CD-ROM | disk | FTP | other *** search
- // Copyright 1995 Don Yacktman.
- // Use is governed by the MiscKit license
-
-
- #import <misckit/misckit.h>
-
- void main()
- {
- id fileName = [MiscString newWithString:"AddressBook.table"];
- id theFile = MiscParseTableFile(fileName);
- [fileName cat:".out"];
- exit(MiscWriteTableFile(fileName, theFile));
- }
-