On Tue, 2003-08-05 at 16:32, Yogish wrote: > Hi > We do have the source of the mumps compiler and it is written in C language
Then it seems very unlikely you will have to rewrite the whole thing. At worst, you will probably have to fix little-endian assumptions; you're in luck in that the word size will not change. So mostly it'll be a matter of making sure that your data type definitions match up, and then finding and eliminating places where it's assumed data is stored in little-endian rather than big-endian byte order. In any case, it should be far short of a complete rewrite. Adam
